有关在R中的HH包中绘制轴标签的建议吗?
在下面的例子中,我希望标签A,B和C呈45度角。 'rot'只旋转刻度,而text(object,srt = 45)似乎不起作用。
library(HH)
test<-data.frame('A'=c(10,12,40,12),
'B'=c(14,23,13,30),
'C'=c(11,40,12,16))
rownames(test)<-c("No","Maybe","Plausible","Yes")
likert(t(test)[,1:4], horizontal = FALSE,as.percent = TRUE,
main = NULL,
xlab = "Percent", # becomes ylab due to horizontal arg
ylab = "Condition", #xlab.top = "Total in Condition",
ylab.right = FALSE #removes Row Count Totals from Right)