Ggplot2s yönlerinde kullanılmayan seviyeleri düşürmek mümkün mü? Bu benim kodum:
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
Anahtarı denedim ama yardımcı olmuyor. Neyi yanlış yapıyorum?
Bunun gibi saf programlama (istatistikler değil) soruları için lütfen StackOverflow
—
smci