Programing

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

lottogame 2020. 5. 26. 07:42
반응형

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


이 질문에는 이미 답변이 있습니다.

y 축에만 레이블이 지정되도록 레이블과 눈금 표시를 포함하여 x 축의 모든 것을 제거해야합니다. 어떻게해야합니까?

아래 이미지에서 나는 '명확함'을 원하고 모든 눈금 표시와 레이블을 제거하여 축선 만 있습니다.

샘플 ggplot

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

반응형