作图
plot(rnorm(50))
Rplot1.png
boxplot(iris$Sepal.Length~iris$Species , col = c("lightblue","lightyellow","lightpink"))
Rplot02.png
R基本操作
工作路径设置
查看工作目录:getwd()
更改工作目录:setwd()
查看工作路径的文件
两者作用相同
list.files()
dir()
计算
3+5
3-5
3*5
3/5
3^5
sqrt(9) ##开根号
abs(-3) ##绝对值
log2(8)
赋值
使用<-
a <- 1+2
意思是把1+2的值赋予a变量
清除变量
a<-3
b<-2
c<-1
现在有三个变量
rm(`指定变量`) #删除指定变量
rm(list = ls()) #删除全部变量
历史命令
history():
网友评论