棒グラフ上で x 軸ラベルを 45 度回転させようとしていますが、うまくいきません。以下は私が持っているコードです。
barplot(((data1[,1] - average)/average) * 100,
srt = 45,
adj = 1,
xpd = TRUE,
names.arg = data1[,2],
col = c("#3CA0D0"),
main = "Best Lift Time to Vertical Drop Ratios of North American Resorts",
ylab = "Normalized Difference",
yaxt = 'n',
cex.names = 0.65,
cex.lab = 0.65)
ベストアンサー1
オプションパラメータ las=2 を使用します。
barplot(mytable,main="Car makes",ylab="Freqency",xlab="make",las=2)