博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ggplot画基本图形类型
阅读量:5854 次
发布时间:2019-06-19

本文共 956 字,大约阅读时间需要 3 分钟。

df<-data.frame(

x=c(3,1,5),
y=c(2,4,6),
label=c("a","b","c"))
p<-ggplot(df,aes(x,y))+xlab(NULL)+ylab(NULL)
p+geom_point()+labs(title="geom_point")
p+geom_bar(stat="identity")+labs(title="geom_bar(stat=\"identith\")")
p+geom_line()+labs(title="geom_line") //按x轴的顺序进行连接
p+geom_area()+labs(title="geom_area")
p+geom_path()+labs(title="geom_path") //按点的顺序进行连接
p+geom_text(aes(label=label))+labs(title="geom_text")
p+geom_tile()+labs(title="geom_tile")
p+geom_polygon()+labs(title="geom_polygon")

从左上到右下的图形名称分别为:散点图、条形图、线条图、面积图、路径图、含标签的散点图、色深图/水平图和多边形图。

 

 

箱线图:

library(plyr)

qplot(cut,depth,data=diamonds,geom="boxplot")
qplot(carat,depth,data=diamonds,geom="boxplot",group=round_any(carat,0.1,floor),xlim=c(0,3))

箱线图可以用于观察针对一个类别型变量(如cut)取条件时(左图),或连续型变量(如carat)取条件时,连续型变量的分布情况。对于连续型变量,必须设置group图形属性以得到多个箱线图。此处使用group=round_any(carat,0.1,floor)来获得针对变量carat以0.1个单位为大小封箱后的箱线图。

解读箱线图:

做个小推广:程序员经常久坐,颈椎毛病比较多,特别推荐

转载于:https://www.cnblogs.com/longzhongren/p/4310210.html

你可能感兴趣的文章
encrypt myself code
查看>>
CentOS 7使用dnf安装Memcached以及启动、停止、开机启动等设置
查看>>
dev gridControl 自定义绘制列头颜色
查看>>
Entity Framework 6.0 Code First(转)
查看>>
大话设计之策略模式
查看>>
leetcode 5. Longest Palindromic Substring
查看>>
重构之路 组合查询之传參+存储过程
查看>>
Android设置拍照或者上传本地图片
查看>>
Spark- 计算每个学科最受欢迎的老师
查看>>
中枢理论
查看>>
Xamarin Android 打造属于自己的博客园APP
查看>>
数据库中表散列
查看>>
概率中奖
查看>>
netty学习
查看>>
windows下编译firefox
查看>>
C++一行字符串处理
查看>>
python txt、excel读写
查看>>
PIC初学者常犯的错误
查看>>
Django 模型层,ORM,单表多表查询
查看>>
Python进程池Pool
查看>>