実現したいこと
ggplot2を使用して、列名を変更してもヒストグラムが作成されるようにしたい。
発生している問題
以下のように、デモデータを用いてggplotでヒストグラムを作成したところ、データ作成時はヒストグラムが描画できたのに、列名を変更すると描画できなくなりました。
まず、正規分布(平均0、分散1)に従うランダムなデータを用意した後、ggplotで描画しました。
library(ggplot2)
set.seed(100)
df.normal <- data.frame(x = rnorm(n = 200, mean = 0, sd = 1))
ggplot(data = df.normal, aes(x = x)) + geom_histogram()
このデータフレームの列名を変更した場合、ヒストグラムが描画できなくなりました。
names(df.normal)="a"
head(df.normal)
a
1 0.02817177
2 -0.35670341
3 0.85262638
4 0.51336525
5 1.01820300
6 -1.02147908
ggplot(data = df.normal, aes(x = "a")) + geom_histogram()
Error: StatBin requires a continuous x variable: the x variable is discrete.Perhaps you want stat="count"?
Run rlang::last_error()
to see where the error occurred.
rlang::last_error()
<error/rlang_error>
StatBin requires a continuous x variable: the x variable is discrete.Perhaps you want stat="count"?
Backtrace:
- (function (x, ...) ...
- ggplot2:::print.ggplot(x)
- ggplot2:::ggplot_build.ggplot(x)
- ggplot2:::by_layer(function(l, d) l$compute_statistic(d, layout))
- ggplot2:::f(l = layers[[i]], d = data[[i]])
- l$compute_statistic(d, layout)
- ggplot2:::f(..., self = self)
- self$stat$setup_params(data, self$stat_params)
- ggplot2:::f(...)
Run rlang::last_trace()
to see the full context.
#試したこと
エラーメッセージにある解決策を実行しましたが、ビンが一つだけになったグラフが作成されました。このため、列名を変更すると、うまくx軸が認識されなくなっていることが原因と思われます。
ggplot(data = df.normal, aes(x = "a")) + geom_histogram(stat="count")
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/16 13:46