hello-R

Posted shuiyonglewodezzzzz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hello-R相关的知识,希望对你有一定的参考价值。

#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的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?

VSCode自定义代码片段——.vue文件的模板

VSCode自定义代码片段6——CSS选择器

VSCode自定义代码片段——声明函数