如何在R中逐行逐行浏览csv

时间:2017-11-22 14:54:44

标签: r csv

这是我的代码:

smp <- read.csv2("tennis2.csv")
dim(smp)
names(smp)
str(smp)
smp$NbLigne[1]
for(i in smp$NbLigne){
  print(i)
}

Size <- nrow(smp)
print(Size)
# not working
# here is my problem
for(i in smp){
  print(i$NbLigne)
}

我想逐行浏览我的csv然后为每行打印该行的NbLigne单元格。

我试过这样做:

for(i in smp){
  print(i$NbLigne)
}

但它不起作用。

谢谢和问候

1 个答案:

答案 0 :(得分:0)

for(i in 1:nrow(smp)){
  row <- smp[i,]
  print(row$NbLigne)
}