我正在尝试更改vioplot的x轴值。我使用了一个建议并写道:
library(vioplot)
labels=c(10,20,30)
x1=c(1,2,3,4)
x2=c(5,6,7,8,9,10)
x3=c(11,12,13,14,15,16)
x=list(x1,x2,x3)
do.call(what = vioplot, args = x)
axis(side=1,at=1:length(labels),labels=labels)
但似乎a轴上的值被添加到1-2-3,我不想呈现。
谢谢
答案 0 :(得分:1)
您的数据采用list()格式,因此必须将其转换为数据框。然后通过将值叠加在一起来融化数据框。
使用geom_violin
创建核密度图并使用geom_boxplot
,我们在核密度图上创建箱图。箱图的宽度使用width
控制。
library('ggplot2')
library('reshape2')
df <- data.frame( lapply(x, function(y) {length(y) <- max(lengths(x)); y})) # create data frame from list of x
colnames(df) <- as.character(labels) # change column names to labels
df <- melt(df) # melt data frame
df <- df[ !is.na(df$value), ] # remove NA
ggplot(data = df ) +
geom_violin(aes(x = variable, y = value, fill = variable )) + # kernel density plot
geom_boxplot(aes(x = variable, y = value ), width = 0.1) + # box plot
xlab( " labels " ) + # x axis title
ylab( " values " ) # y axis title
trim = FALSE
ggplot(data = df ) +
geom_violin(aes(x = variable, y = value, fill = variable ), trim = FALSE ) + # kernel density plot
geom_boxplot(aes(x = variable, y = value ), width = 0.1) + # box plot
xlab( " labels " ) + # x axis title
ylab( " values " ) # y axis title
数据:强>
labels=c(10,20,30)
x1=c(1,2,3,4)
x2=c(5,6,7,8,9,10)
x3=c(11,12,13,14,15,16)
x=list(x1,x2,x3)