반응형
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
반응형
'programing' 카테고리의 다른 글
Xcode 9 문제 수정: "iPhone 사용 중: iPhone에 대한 디버거 지원 준비 중" (0) | 2023.06.05 |
---|---|
UI 테이블 보기 섹션 사이의 공간 줄이기 (0) | 2023.06.05 |
데이터베이스 테이블의 모든 레코드 삭제 (0) | 2023.06.05 |
루비 배열에서 문자열로 변환 (0) | 2023.06.05 |
org.gradle.api.message.리소스 예외:Android Studio 3.2에서 리소스를 가져올 수 없습니다. (0) | 2023.06.05 |