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