# 新手上路
a <- 1:10
a
A
cor(iris[,1:4])
Cor(iris[,1:4])
# 获取帮助
?median # 等价于help("median"),查看中位数函数的帮助文档
??median # 等价于help.serach("median") 搜索包含median的帮助信息
help("runExample")
help("runExample",package = "shiny")
help("runExample",try.all.packages = TRUE)
apropos("plot")
example("median")
data()
data(package = .packages(all.available = TRUE))
# 工作空间
# 创建数据对象a,b
a <- 1:10
b <- 10:1
# 创建模型对象fit
fit <- lm(Sepal.Length~Sepal.Width,data=iris)
# 创建图形对象q、p
library(ggplot2)
q <- qplot(mpg, wt, data = mtcars)
library(rCharts)
names(iris) = gsub('\\.', '', names(iris))
p <- rPlot(SepalLength ~ SepalWidth | Species, data = iris, type = 'point', color = 'Species')
# 移除对象fit
rm(list="fit")
ls()
# 移除剩下的所有对象
rm(list=ls())
ls()
gc()
# 查看工作目录
get()
# 修改默认工作目录
setwd("D:/写书") # 或者 setwd("D:\\写书")
# 包的安装及使用
# 安装扩展包
install.packages("data.table")
# 加载扩展包
example("first")
library(data.table)
example("first")
# 查找已经加载的扩展包
find.package() # or path.package()
标签:手上,入门,语言
From: https://blog.csdn.net/2301_76574743/article/details/140295147