-
"You can't manage what you can't measure" Peter Drucker
[Rstudio] 한 화면에 여러 개 복수 그래프 출력 (par, plot_grid)
[한 화면에 복수 그래프를 출력하기 (par)] par() 함수는 R에서 그래픽 파라미터를 설정하고 제어하기 위해 사용되는 함수 mfrow : 그래프를 출력할 그리드 레이아웃을 지정하는 데 사용, 두 개의 숫자, c(rows, columns)로 구성 # 그래픽 디바이스 설정 par(mfrow = c(1, 3)) # 1x3 서브플롯 생성 # 첫 번째 서브플롯 boxplot(penguins$bill_length_mm, col = "darkblue", main = "bill_length") # 두 번째 서브플롯 boxplot(penguins$bill_depth_mm, col = "blue", main = "bill_depth") # 세 번째 서브플롯 boxplot(penguins$body_mass_g, col..
2023. 10. 15.