利克特图 100% 刻度与利克特包

Likert plot 100 percent scale with Likert Package

我想绘制一个比例为 100% (100) 且图大小相等的李克特图。我尝试了以下代码并给出了以下情节:

plot(LIKPR3,centred=TRUE,plot.percents=TRUE, plot.percent.neutral = TRUE, text.size = 6,
                  text.color = "black", include.center = TRUE,
                  ordered = TRUE, wrap = 60, wrap.grouping = 50, legend = "Response",
                  legend.position = "bottom", panel.arrange = "v",
                  plot.percent.low = FALSE, plot.percent.high = FALSE, central=FALSE)

我想制作类似下面的情节。

我在 R 中使用 "likert" 包。

非常感谢任何帮助。

嘿, 您创建的情节与您想要的情节之间的区别是 "centre"。使用 centered = TRUE 时,您强制绘图以 0 处的 "neutral" 类别为中心,在 5 点李克特量表的情况下,这将是第三个类别。要获得堆积图,您必须使用 centered = FALSE.