6. R Clean code 작성법
2018. 12. 29. 12:43
setwd('c:/users/is2js/R_da/')
# 1. 연산자 좌우 띄어쓰기
# 2. 쉼표 다음 띄어쓰기 or 줄바꿈
# 3. for문 길어질때 마지막 주석으로 표시해주기
# 4. 너무 많은 code는 Code > Reformat code [ Ctrl + Shift + A]
install.packages("ggplot2")
library("ggplot2")
data("iris")
df = iris
ggplot() +
geom_point(data = df,
aes(x= Sepal.Length,
y= Sepal.Width,
color = Species),
size = 3)
'한의대 생활 > └ R studio 중급 문법' 카테고리의 다른 글
8. R reshape2패키지를 활용한 Pivoting (0) | 2018.12.29 |
---|---|
7. R 스크립트 파일 관리(*중요*) (0) | 2018.12.29 |
5. 속성 확인 및 변환 (0) | 2018.12.29 |
4. 데이터 저장하기 ( R 기본제공 iris 데이터 가져오기 포함) (0) | 2018.12.29 |
3. 데이터 불러오기 ( readLines()로 구분자 구분시키는 TIP 포함) (0) | 2018.12.28 |