programing

ggplot에서 모든 x축 레이블 제거

goodsources 2023. 6. 5. 23:51
반응형

ggplot에서 모든 x축 레이블 제거

나는 y축만 라벨이 되도록 라벨과 체크 표시를 포함하여 x축에 있는 모든 것을 제거해야 합니다.어떻게 해야 하나요?

아래 이미지에서 저는 '투명도'와 모든 체크 표시와 라벨을 제거하여 축 선만 그곳에 있으면 좋겠습니다.

표본 gg 그림

data(diamonds)
ggplot(data = diamonds, mapping = aes(x = clarity)) + geom_bar(aes(fill = cut))

ggplot 관리도:

여기에 이미지 설명 입력

원하는 차트:

여기에 이미지 설명 입력

다음으로 설정해야 합니다.element_blank()theme()제거해야 하는 요소

ggplot(data = diamonds, mapping = aes(x = clarity)) + geom_bar(aes(fill = cut))+
  theme(axis.title.x=element_blank(),
        axis.text.x=element_blank(),
        axis.ticks.x=element_blank())

언급URL : https://stackoverflow.com/questions/35090883/remove-all-of-x-axis-labels-in-ggplot

반응형