R ggplot에서 배경 라인 없애기
✔️ 필요성 ggplot을 그렸을 때 뒷배경이 어떤 라인도 없이 흰색이었으면 할 때가 있다 ✔️ 활용 예제 data %>% ggplot() + geom_bar(aes(x=type, y=value, stat="identity")) + theme( panel.background = element_rect(fill="white", colour="black"), strip.background = element_rect(fill="white", colour="black"), legend.position = "none" #legend 없애기 )