-
"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.
[Rstudio tidyverse] dplyr 패키지 (filter, select, mutate)
dplyr 패키지 (filter, select, mutate) dplyr 패키지는 R에서 데이터 프레임을 다루는 작업을 효율적으로 수행하기 위한 패키지로, 데이터 필터링, 정렬, 그룹화, 요약, 변환 등 다양한 작업을 할 수 있다. 데이터 분석 초기에 많이 사용되며, 데이터를 요약하고 살펴보기 위한 용도와 단계별 분석을 위해서 가공하기 위해서 많이 사용되며, 직관적인 문법을 제공한다. penguins 데이터 세트는 palmerpenguins 패키지에 포함되어 있으며, 펭귄 종류에 대한 정보와 크기, 무게 등의 데이터가 포함되어 있음 install.packages('palmerpenguins') #팔머 펭귄 Dataset이 포함된 패키지 library(palmerpenguins) data("penguins..
2023. 10. 7.