我正在使用 R 包 likert 根据问卷制作图表。这些图表基本上只是偏好谱,看起来很像这个reprex(没有原始数据,不能公开):
data("pisaitems")
title <- "How often do you read these materials because you want to?"
items29 <- pisaitems[,substr(names(pisaitems), 1,5) == 'ST25Q']
head(items29); ncol(items29)
names(items29) = c("Magazines", "Comic books", "Fiction", "Non-fiction books", "Newspapers")
l29 <- likert(items29)
str(l29)
l29s <- likert(summary = l29$results)
str(l29s)
scale_height = knitr::opts_chunk$get('fig.height')*0.5
scale_width = knitr::opts_chunk$get('fig.width')*1.25
knitr::opts_chunk$set(fig.height = scale_height, fig.width = scale_width)
theme_update(legend.text = element_text(size = rel(0.7)))
plot(l29s) + ggtitle(title)
所以这是我的问题:
- 我正在为一家德国公司进行此分析,但我似乎无法摆脱图表中的“百分比”标签?
- 如何将轴上的刻度更改为 10% 增量?
- 如何将项目名称与左侧对齐并将标题居中?如何将图例与左下角对齐?
我已经设法让大部分图表设置符合我的偏好,但最后 3 项一直让我望而却步。
仅供参考:示例是从该站点生成的: https ://rpubs.com/m_dev/likert_summary