반응형
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
반응형
'Programing' 카테고리의 다른 글
루비에서 CSV로 출력 배열 (0) | 2020.05.26 |
---|---|
생성자 vs 팩토리 메소드 (0) | 2020.05.26 |
PowerShell의 삼항 연산자 (0) | 2020.05.26 |
Java 클래스가로드 된 위치 찾기 (0) | 2020.05.26 |
이 반복적 인리스트 증가 코드가 왜 IndexError :리스트 할당 인덱스가 범위를 벗어 납니까? (0) | 2020.05.26 |