R 데이터프레임 구간별 집단 분할

Jmnote (토론 | 기여)님의 2021년 10월 9일 (토) 17:01 판 (→‎개요)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

R 데이터프레임 구간별 집단 분할
df <- read.csv( header=T, stringsAsFactors=F, text="
student,math,science
Alice,100,50
Bob,90,60
Carol,80,70
David,70,80
Erin,60,90
")
df
df$math_grade1 <- cut(df$math, breaks=c(0,75,90,100))
df
df$math_grade2 <- cut(df$math, breaks=c(0,75,90,100), labels=c("C","B","A"))
df

2 같이 보기

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