是否可以删除ggplot2s方面未使用的级别?这是我的代码:
tab = as.data.frame(cbind(groups = mtcars$cyl, names = row.names(mtcars), val = mtcars$mpg, N = mtcars$disp))
tab$N = as.numeric(tab$N)
ggplot(tab, aes(names,val)) +
geom_point() + coord_flip() +
theme_bw() +
facet_grid(groups ~ ., drop=TRUE)#, scales="free", as.table=F, space="free")
我尝试了drop=T
开关,但没有帮助。我究竟做错了什么?
对于像这样的纯编程(非统计)问题,请迁移到StackOverflow
—
smci 18'Sep