百里屠苏top |
|
||
2024年11月18日
摘要:
一、自定义函数 1.定义函数 #定义函数 无参函数 myprint<-function(){ print("I like R!") } myprint()#调用函数 #定义函数 有参函数 myadd<-function(a,b){ print(paste("the first is",a)) pri 阅读全文
摘要:
一、循环 1.for 循环 for (i in 1:10) print(i) # s<-0 for (i in 1:50){ s=s+i } s sum(1:50) #实现上面前50求和的功能 # 2.while循环 i<-1 while(i<=10){ print(i) i=i+1 } 3.app 阅读全文
|
Copyright © 2024 百里屠苏top
Powered by .NET 9.0 on Kubernetes |