码迷,mamicode.com
首页 > 编程语言 > 详细

R语言学习-for循环

时间:2017-08-14 13:30:30      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:cto   amp   tps   int   一个   blank   get   string   john   

先设置一个Data Frame

df = data.frame(age=c(21, 22, 23),name=c(‘KEN‘, ‘John‘, ‘JIMI‘),stringsAsFactors = FALSE);

输出df如下

age name
1 21 KEN
2 22 John
3 23 JIMI

通过for循环来输出

for(i in 1:nrow(df)){
  l<-df[i,]  
  print(l)
  print(l[‘age‘])
}

其中,nrow(df)计算出df中行的数量,然后i在df所有行中循环遍历。

R语言学习-for循环

标签:cto   amp   tps   int   一个   blank   get   string   john   

原文地址:http://www.cnblogs.com/xugege/p/7357172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!