我在 R 中使用 strsplit 将名称添加到箱线图,但这给了我一个错误。
strng <- "one%two%three"
tt <- strsplit(strng,"%",fixed=TRUE)
进而
boxplot(param~grp,data=snp,horizontal=TRUE,names=tt)
这产生
ls = list(c("one", "two", :
'at' and 'labels' lengths differ, 3 != 1
Calls: boxplot ... boxplot.default -> do.call -> bxp -> do.call -> axis
Execution halted
names 参数需要一个向量,而 strsplit 返回一个列表。这些不兼容吗?
如果我做
boxplot(param~grp,data=snp,horizontal=TRUE,names=c("on","two","three"))
然后就可以了。
非常感谢你的帮助