prosource

ggplot: 면 그림 사이의 간격을 늘리는 방법은 무엇입니까?

probook 2023. 6. 22. 21:58
반응형

ggplot: 면 그림 사이의 간격을 늘리는 방법은 무엇입니까?

아래 명령으로 얻은 여러 면의 히스토그램이 하나씩 아래에 잘 표시되어 있습니다.저는 그들 사이의 간격을 늘리고 싶지만, 그들은 꽉 끼었습니다.

저는 문서를 살펴보았지만 이것에 대한 매개 변수를 찾지 못했습니다.

qplot (Happiness.Level, Number.of.Answers, data=mydata, geom="histogram") + facet_grid (Location ~ .) 

테마 기능을 사용합니다.

library(grid)

p + theme(panel.spacing = unit(2, "lines"))

참고 항목: ggplot2에 의해 생성된 분할 그림

@rcs 응답에 추가하려면 다음과 같이 하십시오.

# Change spacing between facets on both axis
p + theme(panel.spacing = unit(2, "lines"))

# Change horizontal spacing between facets
p + theme(panel.spacing.x = unit(2, "lines"))

# Change vertical spacing between facets
p + theme(panel.spacing.y = unit(2, "lines"))

언급URL : https://stackoverflow.com/questions/3681647/ggplot-how-to-increase-spacing-between-faceted-plots

반응형