Czy można zrzucić poziomy, które nie są używane w aspektach ggplot2? To jest mój kod:
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")
Próbowałem drop=T
przełącznik, ale to nie pomaga. Co ja robię źle?