반응형 6. 데이터 시각화 - ggplot2/히스토그램2 [R ggplot2] 히스토그램 y축을 density로 (확률밀도함수) geom_histogram 함수 안에 geom_histogram( aes(y=..density..) ) 라고 입력하면 됩니다. density 옵션은 전체 넓이가 1이 되도록 만든 것입니다. 확률 밀도함수가 됩니다. 아래는 예시입니다. 히스토그램을 그리기 위해 islands 내장데이터를 데이터프레임 형태로 저장합니다. df=as.data.frame(islands) > head(df) islands Africa 11506 Antarctica 5500 Asia 16988 Australia 2968 Axel Heiberg 16 Baffin 184 ggplot2 로 그래프를 그려줍니다. library(ggplot2) ggplot(df,aes(x=islands))+geom_histogram()+ ggtitle("i.. 2022. 5. 12. [R ggplot2] 히스토그램 그리는 방법 ggplot2 패키지를 이용하여 히스토그램을 그려봅시다. 패키지가 설치되지 않은 분들은 패키지를 먼저 설치합시다. R콘솔창에 아래와 같이 입력합니다. install.packages("ggplot2") 데이터는 내장데이터인 islands 를 사용하겠습니다. 국가 별 섬의 개수 데이터입니다. 먼저 데이터를 데이터프레임 형태로 바꿔줍시다. ggplot2 입력 형식이 데이터프레임이기 때문에 바꿔주는 것입니다. df=as.data.frame(islands) > head(df) islands Africa 11506 Antarctica 5500 Asia 16988 Australia 2968 Axel Heiberg 16 Baffin 184 ggplot2 를 불러오고 그래프를 그려줍니다. library(ggplot2) .. 2022. 3. 27. 이전 1 다음 반응형