百里屠苏top  

2024年11月18日

摘要: 一、自定义函数 1.定义函数 #定义函数 无参函数 myprint<-function(){ print("I like R!") } myprint()#调用函数 #定义函数 有参函数 myadd<-function(a,b){ print(paste("the first is",a)) pri 阅读全文
posted @ 2024-11-18 17:35 百里屠苏top 阅读(2) 评论(0) 推荐(0) 编辑
 
摘要: 一、循环 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 阅读全文
posted @ 2024-11-18 17:20 百里屠苏top 阅读(1) 评论(0) 推荐(0) 编辑