[R] 히스토그램(Histogram) Start

BioinformaticsAndMe







1. 히스토그램(Histogram)?


: 히스토그램(Histogram)은 표로 되어 있는 도수분포표를 그래프로 나타낸 것



2. 히스토그램 예제


# R에 내장된 airquality 데이터셋 str(airquality)

'data.frame': 153 obs. of 6 variables: $ Ozone : int 41 36 12 18 NA 28 23 19 8 NA ... $ Solar.R: int 190 118 149 313 NA NA 299 99 19 194 ... $ Wind : num 7.4 8 12.6 11.5 14.3 14.9 8.6 13.8 20.1 8.6 ... $ Temp : int 67 72 74 62 56 66 65 59 61 69 ... $ Month : int 5 5 5 5 5 5 5 5 5 5 ... $ Day : int 1 2 3 4 5 6 7 8 9 10 ...

# 히스토그램 생성을 위한 hist 함수 사용 Temperature <- airquality$Temp

hist(Temperature)

# hist 함수 파라미터 정보 추가 hist(Temperature, main="Maximum daily temperature at La Guardia Airport", xlab="Temperature in degrees Fahrenheit", xlim=c(50,100), col="darkmagenta", freq=FALSE )

# text 함수를 사용하여, 특정값 Labeling h <- hist(Temperature, ylim=c(0,40)) text(h$mids, h$counts, labels=h$counts, adj=c(0.5, -0.5))

# break 옵션으로 히스토그램 구간을 나눔 hist(Temperature, breaks=4, main="With breaks=4") hist(Temperature, breaks=20, main="With breaks=20")





#Reference

1) https://terms.naver.com/entry.nhn?docId=707162&cid=42318&categoryId=42318

2) https://www.datamentor.io/r-programming/histogram/





[R] 히스토그램(Histogram) End

BioinformaticsAndMe



'R' 카테고리의 다른 글

[R] 파이차트(Pie plot)  (0) 2019.12.03
[R] 생존분석(Survival analysis)  (0) 2019.11.25
[R] Excel 읽기/쓰기  (0) 2019.11.05
[R] Merge  (0) 2019.10.30
[R] Heatmap 시각화  (4) 2019.10.24

+ Recent posts