Porcentagem de parcelas com o pacote Likert - Não funciona quando agrupar

Eu criei alguns gráficos usando o pacote Likert, no entanto, quando eu criar gráficos por grupos, o plot.percents = TRUE não me dará os rótulos para cada categoria de resposta. O plot.percents.high = TRUE e plot.percents.low = TRUE me dá a porcentagem combinada, no entanto eu quero para todas as categorias de resposta. Funciona bem com os dados desagrupados. O código que estou usando é:

Faça alguns dados

library(likert)
library (reshape)

Group <- c("Group 1", "Group 1", "Group 1", "Group 1", "Group 1", "Group 1", "Group 1", "Group 2", "Group 2", "Group 2", "Group 2", "Group 2",
           "Group 2","Group 2", "Group 3", "Group 3", "Group 3", "Group 3","Group 3","Group 3","Group 3")

Var1 <- c("Agree", "Agree", "Strongly agree", "Agree", "Strongly disagree", "Agree","Strongly agree", "Disagree", "Strongly agree",
          "Strongly agree", "Agree", "Disagree", "Agree", "Strongly disagree", "Agree", "Agree", "Agree", "Disagree", "Strongly agree",
          "Strongly disagree", "Strongly agree")

df <- as.data.frame (cbind(Group, Var1))

Variable <- c("Var1")

df2 <- (df[Variable])


likert.df <- likert (df2)

likert.df.group <- likert (df2, grouping=df$Group)

likert.df é a resposta para todos, likert.df.group é a resposta de cada grupo. Quando eu executo o enredo (abaixo) com apenas likert.df, obtenho as porcentagens para cada resposta, quando eu corro para o likert.df.group, elas desaparecem.

likert.bar.plot(likert.df, low.color = "#007CC2",
                high.color = "#F7971C", neutral.color = "grey90",
                neutral.color.ramp = "white", plot.percent.low = FALSE,              
                plot.percent.high = FALSE, plot.percent.neutral = FALSE,
                plot.percents = TRUE, text.size = 4,
                text.color = "black", centered = FALSE,
                include.center = FALSE, ordered = FALSE,
                wrap.grouping = 50, legend = "Response",
                legend.position = "bottom", panel.arrange = "v",
                panel.strip.color = "grey90")+ 
                ggtitle("Chart Title") + 
                theme (panel.background = element_rect(fill="NA")) +
                theme (axis.text.y = element_text (colour="black", size="10", hjust=0))+
                theme (axis.text.x = element_text (colour="black", size="10")) + 
                theme (legend.title = element_blank())+
                theme (plot.margin = unit (c(0,0,0,0),"mm"))

Estou esquecendo de algo?

questionAnswers(3)

yourAnswerToTheQuestion