码迷,mamicode.com
首页 > 其他好文 > 详细

hello-R

时间:2018-07-27 20:52:46      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:span   test   bsp   dia   div   star   switch   color   oop   

#print start
{
    #1:3 is array
    for(i in 1:3) 
    {
        print(1:i)
    }
}
#print end


#if start
{
    x<- 1
    if(x==1)
        print(x)
    else
        print("not eq 1")
}
#if end
#loop start
{
    x <- 1
    repeat
    {
        
        print(9:x)
        x <- x+1
        if(x==10)
            break
    }
    for(y in 1:1000) 
    {
        if(y==10)
        break
        print(1:y)
    }
    
    y <- 0
    while(y <= 100)
    {
        if(y==10)
        break
        print(1:y)
        y <- y+1
    }

}
#loop end
#if end
#switch start
y <- "fruit"
switch(y,fruit="banana",vegetable = "broccoli","Neither")
y <- "test"
switch(y,fruit="banana",vegetable = "broccoli","Neither")
x <- 2
switch(x,1,2,3)
x <- 2
switch(x,1,mean(1:10))
x <- 3
switch(x,1,mean(1:10),rnorm(5))
x <- 4
switch(x,1,mean(1:10),rnorm(5),"Neither")
print("switch with function")
centre <- function(x,type)
{
    switch(type,mean=mean(x),median=median(x),trimmend=mean(x,trim= .1))
}
#随机函数
x <- rcauchy(5)
print(x)
centre(x,"mean")
centre(x,"median")
centre(x,"trimmend")
#switch end

 

hello-R

标签:span   test   bsp   dia   div   star   switch   color   oop   

原文地址:https://www.cnblogs.com/shuiyonglewodezzzzz/p/9379281.html

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