क्या यह उन स्तरों को गिराना संभव है जो 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