Skip to content

Commit

Permalink
changed barryclark#35
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKevinNa committed Nov 20, 2018
1 parent 789c78f commit f1c1363
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion _posts/2018-04-25-R-시각화-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,8 @@ ggline +
size = 4,
family = 'NanumGothic',
fontface = 'bold') +
scale_x_continuous(limits = c(0.269, 0.302))
scale_x_continuous(limits = c(0.269, 0.302)) +
theme_classic(base_family = 'NanumGothic')
```

![](https://raw.githubusercontent.com/MrKevinNa/MrKevinNa.github.io/master/images/2018-04-25-R-시각화-2/unnamed-chunk-35-1.png)
Expand Down
Binary file modified images/2018-04-25-R-시각화-2/unnamed-chunk-35-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions rmds/2018-04-25-R-시각화-2.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ knitr::opts_chunk$set(echo = TRUE, dpi = 300)
library(readxl)
# xlsx 파일을 읽어, dataXls에 할당합니다.
hitters <- read_excel(path = './data/2017_Baseball_hitter_stat.xlsx', sheet = NULL)
hitters <- read_excel(path = '../data/2017_Baseball_hitter_stat.xlsx', sheet = NULL)
# 불필요한 열(순위)을 삭제합니다.
hitters <- hitters[, -1]
Expand Down Expand Up @@ -544,7 +544,8 @@ ggline +
size = 4,
family = 'NanumGothic',
fontface = 'bold') +
scale_x_continuous(limits = c(0.269, 0.302))
scale_x_continuous(limits = c(0.269, 0.302)) +
theme_classic(base_family = 'NanumGothic')
```

## 추가사항
Expand Down

0 comments on commit f1c1363

Please sign in to comment.