エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
irisデータです。 dotplotとboxplotを重ね合わせる図を描きます。 こうやって書くナリね。 library(ggpl... irisデータです。 dotplotとboxplotを重ね合わせる図を描きます。 こうやって書くナリね。 library(ggplot2) g <- ggplot(iris, aes_string(x ="Species", y= "iris$Sepal.Width", fill= "Species", col= "Species" )) g <- g + geom_dotplot(binwidth = 0.1, dotsize= 0.5, stackdir = "center", binaxis ="y") + geom_boxplot(alpha=0.3) + ggtitle("Sepal.Width") + theme_bw(10) +theme(legend.position="top") plot(g) まず、 1行目: libraryの読み込み。 3行目:ggplot()で、デ