这是我的代码:
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)
}
但它不起作用。
谢谢和问候
答案 0 :(得分:0)
for(i in 1:nrow(smp)){
row <- smp[i,]
print(row$NbLigne)
}
或