R语言学习笔记【4】R语言中的编程
STA3050 Lec4笔记 1、创建函数 se<-function(x){ n<-length(x) # find the sample size return(sd(x)/sqrt(n)) } #这里的n是局部变量 创建函数的另一种写法 se<-function(x){sd(x)/sqrt(length(x))} 2、&和&&都代表and,但&对应整个向量,返回值为向量,&&仅对应向量第一个元素,返回一个值。 |和||同理(代表or) > x=1:6 > (x > 2) & (x (x > 2) && (x x[(x>2) & (x x[(x>2) && (x&l
用户评论