前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Day4—小王R语言基础—想不出来起什么标题

Day4—小王R语言基础—想不出来起什么标题

原创
作者头像
用户11008555
发布2024-03-08 19:51:58
1210
发布2024-03-08 19:51:58
举报

What is R or Rstudio?

  1. programming language
  2. environment that is used for computing,statistics and drawing

Preparations

set the size of words:

mac: 'command -' is lessen,and of course 'command+' is becoming larger

Basic managements

  1. one Rproject only interacts with on directory, so be care with what may annoys u in the future
  2. display dir/files lists
代码语言:R
复制
dir()
代码语言:R
复制
list.files()
  1. +-*/
  2. assignments
代码语言:R
复制
a<- 111
  1. deletion
代码语言:R
复制
rm(a)
rm(b,c) 
rm(list = ls())
  1. history
代码语言:R
复制
history()

click a sentence twice, it will appear behind of '>'

  1. drawing plots and boxplots
代码语言:R
复制
plot(runif(50))
代码语言:R
复制
boxplot(iris$Sepal.Length~iris$Species,col = c("lightblue","lightyellow","lightpink"))

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • What is R or Rstudio?
  • Preparations
  • Basic managements
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
http://www.vxiaotou.com