请考虑以下代码:
baseball <- read.csv("c:\\Users\\Jim\\Downloads\\MLB2008.csv", header = T)
baseball[1:70,]
此代码将打印出名为&#39; baseball&#39;的数据框的前70行。
我该怎么做?
答案 0 :(得分:3)
cutoff = round(0.7*nrow(baseball))
baseball[1:cutoff,]
baseball[-(1:cutoff),]
答案 1 :(得分:3)
使用head
和tail
。
head(baseball, round(nrow(baseball)*0.7))
tail(baseball, round(nrow(baseball)*0.3))