欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 社会 > ggplot2

ggplot2

2024/11/18 21:28:33 来源:https://blog.csdn.net/2302_80650915/article/details/142862296  浏览:    关键词:ggplot2

ggplot里面含data,aes里面含横轴(纵轴)

install.packages("ggplot2")
install.packages("tidyverse")
library(ggplot2)
library(tidyverse)

data(mpg)
ggplot(data=mpg,
       mapping = aes(x=displ,y=hwy,colour = drv,size = cyl))+
  geom_point()+
  geom_smooth(method = "lm")+
  facet_wrap(~drv)
  theme_gray()


ggplot(data=mpg,
  aes(hwy,col=drv))+
  geom_boxplot()+
  facet_wrap(~drv)+
  coord_flip()  ##颠倒横纵坐标

条形图 :geom_bar

data(msleep)

msleep %>%
  drop_na(vore) %>%
  ggplot(aes(vore))+
  geom_bar(fill=1)+
  coord_flip()+
  theme_bw()+
  labs(x="who",y="Freq",title = "Numbers")

帕累托图:fct_infreq (对条形图进行排序)

msleep %>%
  drop_na(vore) %>%
  ggplot(aes(fct_infreq(vore)))+
  geom_bar(fill=2)+
  coord_flip()+
  theme_bw()+
  labs(x="who",y="Freq",title = "Numbers")

直方图:geom_histogram

ggplot(data=mpg,
       aes(hwy,fill = class))+  #根据class填充颜色
  geom_histogram(breaks=seq(10,45,3),col=2)+  #边框颜色col
  lims(x=c(5,50),y=c(0,60))+
  scale_x_continuous(breaks = seq(10,50,3))+
  scale_y_continuous(breaks = seq(0,60,10))+
  labs(title ="Histogram of hwy")+
  theme_bw()+
  facet_wrap(~class,ncol = 3) #分组排成三列

点图 :geom_point

msleep %>%
  filter(bodywt<2) %>%
  ggplot(aes(bodywt,brainwt))+
  geom_point(aes(colour = sleep_total,
                 size = awake))+
  geom_smooth()+
  facet_wrap(~vore)+
  labs(title = "point")

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com