美文网首页作图
第一章 数据探索

第一章 数据探索

作者: 芋圆学徒 | 来源:发表于2021-02-06 16:25 被阅读0次

author: "Yuyuan Zhang"
date: "2021/2/6"

library(ggplot2)
library(ggpubr)

1点图-----

qplot(mtcars$wt,mtcars$mpg)
qplot(wt,mpg,data = mtcars)
ggplot(mtcars,aes(wt,mpg))+geom_point()
dev.off()

2折线图----

plot(pressure$temperature,pressure$pressure,type = "l")
points(pressure$temperature,pressure$pressure)

lines(pressure$temperature,pressure$pressure/2,col="red")
points(pressure$temperature,pressure$pressure/2,col="red")
dev.off()
#
qplot(pressure$temperature,pressure$pressure,geom = "line")
#等价于下面命令
ggplot(pressure,aes(temperature,pressure))+geom_line()
#添加点
qplot(pressure$temperature,pressure$pressure,geom = c("line","point"))
ggplot(pressure,aes(temperature,pressure))+geom_point()+geom_line()

3条图

table(mtcars$cyl)
barplot(table(mtcars$cyl))
str(BOD)
qplot(factor(BOD$Time),BOD$demand,geom = "bar")#绘制不出来
qplot(Time,demand,data = BOD,geom = "bar",stat = "identity")#绘制不出来
ggplot(BOD,aes(Time,demand))+geom_bar(stat = "identity")
qplot(mtcars$cyl)
qplot(factor(mtcars$cyl))

4绘制直方图

quantile(mtcars$mpg)
hist(mtcars$mpg)
hist(mtcars$mpg,breaks = 10)
qplot(mtcars$mpg,binwidth=4)
ggplot(mtcars,aes(mpg))+geom_histogram(binwidth = 4)
dev.off()

5绘制箱线图

plot(ToothGrowth$supp,ToothGrowth$len)
boxplot(len~supp,data = ToothGrowth)
boxplot(len~supp+dose,data = ToothGrowth)

qplot(ToothGrowth$supp,ToothGrowth$len,geom = "boxplot")
ggplot(ToothGrowth,aes(supp,len))+geom_boxplot()
#使用interaction组合变量
qplot(interaction(ToothGrowth$supp,ToothGrowth$dose),ToothGrowth$len,geom = "boxplot")
ggplot(ToothGrowth,aes(interaction(supp,dose),len))+geom_boxplot()

6绘制函数图像-----

curve(x^3-5*x,from = -4,to=4)
myfun <- function(xvar){
  1/(1+exp(-xvar+10))
}
curve(myfun(x),from = 0,to=20)
curve(1-myfun(x),add = T,col="red")

相关文章

  • 第一章 数据探索

    author: "Yuyuan Zhang"date: "2021/2/6" 1点图----- 2折线图---- ...

  • 数据处理基石:Pandas数据探索

    Pandas数据初探索 本文介绍的是Pandas数据初探索。当我们生成或者导入了数据之后,通过数据的探索工作能够快...

  • 第一章 上下文的重要性

    第一章 上下文的重要性 1.1探索性分析和解释性分析 探索性分析:理解数据并找出其中值得关注或分享给他人的精华 解...

  • 【数据分析】-003-数据探索-Python主要数据探索函数

    Python主要数据探索函数 Python中用于数据探索的库主要是Pandas(数据分析)和Matplotlib(...

  • 数据探索

    数据探索是拿到数据要做的第一步,目的是对要分析的数据有个大概的了解。弄清数集质量,大小,特征和样本数量,数据类型,...

  • 数据探索

    categorial

  • 数据探索

    数据探索是数据分析工作必不可少的环节。主要的目的包括 了解数据内容、数据结构 锁定重要特征变量 识别离群点、异常数...

  • 数据挖掘-DEA(探索性数据分析)

    一、什么是探索性数据分析 探索性数据分析是指:对已经有的数据在尽量少的先验假定下进行数据探索,可以通过绘图、...

  • 非参数探索性空间数据分析法(ESDA)笔记

    基础概念: ①探索性数据分析 数据分析包括探索阶段和实证阶段。 探索性数据分析是在一组数据中寻求重要信息的过程,利...

  • TaskOne-20190303

    IMDB数据集探索 数据探索与分析。链接:https://github.com/XinToWorld/NLP-/b...

网友评论

    本文标题:第一章 数据探索

    本文链接:https://www.haomeiwen.com/subject/kfjotltx.html