如何让我的李克特图从发散变为收敛?

How do I get my Likert chart to go from diverging to converging?

通常,我使用 ggplot2 创建 Likert 图表,但我在这里使用 Likert 包创建了这张图表。

是否可以删除该中心线以便有五个单独的条而不是中间部分的两侧?我认为在这样做时,这张图表需要去从发散(两个方向)到收敛(一个方向)。即从...

100 - 75 - 50 - 25 - 0 - 25 - 50 - 75 - 100

到...

0 - 25 - 50 - 75 - 100

但我不确定如何使用 Likert 包做到这一点。

这是我的代码:

library(reshape)
library(likert)

setwd("~/Desktop/")

df<-read.csv("Likert_Test.csv")

df[8:12] <- lapply(df[8:12], as.factor)

df[8:12] <- lapply(df[8:12], factor, levels = 1:5)
mychart <- likert(df[8:12], grouping = df$Country)

plot(mychart)

您是否尝试过使用 likert 包参数 centered=FALSE