"R 컬럼명 변경"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
1번째 줄: 1번째 줄:
==개요==
==개요==
;R 컬럼명 변경
;R 데이터프레임 컬럼명 변경
;R 데이터프레임 컬럼명 변경


<syntaxhighlight lang='r'>
<source lang='r' notebook>
df <- read.csv(header=T, stringsAsFactors=F, text="
df <- iris
col1,col2,col3
2019-06-01,apple,1
2019-06-02,banana,2
2019-06-03,apple,4
")
df
df
##        col1  col2 col3
</source>
## 1 2019-06-01  apple    1
<source lang='r' notebook>
## 2 2019-06-02 banana    2
## 3 2019-06-03  apple    4
####
names(df)[1] <- "day"
names(df)[1] <- "day"
names(df)[2] <- "fruit"
names(df)[2] <- "fruit"
names(df)[3] <- "ea"
names(df)[3] <- "ea"
df
df
##          day  fruit ea
</source>
## 1 2019-06-01  apple  1
## 2 2019-06-02 banana  2
## 3 2019-06-03  apple  4
</syntaxhighlight>


==같이 보기==
==같이 보기==
* [[R names()]]
* [[R names()]]
* [[R 데이터 전처리]]
* [[R 데이터 전처리]]
* [[Pandas 컬럼명 변경]]


==참고==
==참고==

2021년 9월 24일 (금) 01:14 판

1 개요

R 컬럼명 변경
R 데이터프레임 컬럼명 변경
df <- iris
df
names(df)[1] <- "day"
names(df)[2] <- "fruit"
names(df)[3] <- "ea"
df

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}