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

R语言学习-sep和rep

时间:2017-08-14 14:20:05      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:注意   length   seq   nbsp   bsp   out   3.1   重复   sep   

sep:从X到X按照步数增加或者减少

seq(1, 10, by=1)

seq(1, 10, by=0.1)

seq(1.9, 10, by=0.1)

#注意,不能这样子递减
seq(10, 1, by=0.1)

#注意,你可以这样子递减
seq(10, 1, by=-0.1)

#除了设置步长,还可以设置均分的步数
seq(10, 1, length.out=10)

seq(10, 1, length.out=100)

seq(10, 1, length.out=91)

#数清楚里面的个数
length(seq(10, 1, length.out=91))

 

rep:重复N次

rep(3.14, 5)//3.14重复5次

rep(123, 5)

rep(1:10, 5)

length(rep(1:10, 5))

R语言学习-sep和rep

标签:注意   length   seq   nbsp   bsp   out   3.1   重复   sep   

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

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