Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- ggplot2
- ggsurvplot
- R문법
- 강화학습 #추천서적 #강화학습인액션
- 이산형 확률분포
- 생존그래프
- CrossValidation
- ggplot()
- R
- R 결측치
- R filter
- 콕스비례모형
- 의사결정나무
- Bias-Variance Tradeoff
- 카플란마이어
- 데이터핸들링
- 확률실험
- ISLR
- 미국 선거데이터
- R 연습문제
- R ggplot2
- dplyr
- R mutate
- 주식데이터시각화
- 데이터 핸들링
- R dplyr
- 교차타당성
- geom_errorbar
- R select
- 생존분석
Archives
- Today
- Total
목록R ggplot2 (1)
Must Learning With Statistics

Chapter9. ggplot2를 활용한 다양한 그래프 그리기 이번 장에서는 ggplot2로 그릴 수 있는 그래프들의 종류에 대해 알아보도록 하겠습니다. library(ggplot2) library(dplyr) STOCK = read.csv("D:\\Dropbox\\DATA SET(Dropbox)\\uniqlo.csv") STOCKDate=as.Date(STOCKDate) STOCKYear=as.factor(format(STOCKDate,"%Y")) STOCKDay=as.factor(format(STOCKDate,"%a")) Group_Data = STOCK %>% group_by(Year,Day) %>% dplyr::summarise(Mean = round(mean(Open)), ..
MustLearning with R 1편
2020. 1. 29. 20:46