[R] 히스토그램(Histogram) Start
BioinformaticsAndMe
1. 히스토그램(Histogram)?
: 히스토그램(Histogram)은 표로 되어 있는 도수분포표를 그래프로 나타낸 것
2. 히스토그램 예제
# 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 |