sciplot
エラーバーを手動で計算する必要がないため、実験データに使用するのが大好きです。過去に、次のように 2 つの因子変数をグループ化するために使用しました。
plot1<-bargraph.CI(
df$factor1, #categorical factor for the x-axis
df$y, #numerical DV for the y-axis
df$factor2 #grouping factor
)
ただし、現在、3 つの因子変数をグループ化する必要があります。sciplot
ドキュメントは、これが不可能であることを示していますsciplot.
それで、今、尋ねるのに必要な時が来ました...どうやってこれを行うのggplot2
ですか?具体的には、3 つの因子変数を超えるエラーバーを含むグラフを生成する節約的な方法はありますか? 私は Web を調べましたが、洗練されたソリューションを見つけることになると、不足し続けます。
以下のサンプルデータ:
factor1 factor2 factor3 y
More expensive Least important Blue 1
Less expensive Most important Blue 0
Same cost Least important Red 1
More expensive Least important Red 0
Less expensive Most important Red 1
Same cost Least important Blue 1
More expensive Least important Red 1
Less expensive Least important Blue 0
Same cost Most important Red 1