ggplot2 specific command


# By default, the same scales are used for all panels. You can allow
# scales to vary across the panels with the `scales` argument.
# Free scales make it easier to see patterns within each panel, but
# harder to compare across panels.
#通过实践该代码即可领悟
##1
ggplot(mpg, aes(displ, hwy)) + geom_point() +facet_wrap(~class, scales = "free")

ggplot(mpg, aes(displ, hwy)) + geom_point() +facet_wrap(~class)
# To repeat the same data in every panel, 
# simply construct a data frame that does not contain the facetting variable.
#通过实践该代码即可领悟
ggplot(mpg, aes(displ, hwy)) + geom_point(data = transform(mpg, class = NULL), colour = "grey85") + geom_point() + facet_wrap(~class)

ggplot(mpg, aes(displ, hwy)) + geom_point() + facet_wrap(~class)
#labs() ----Modify axis, legend, and plot labels
#ggplot2 绘图时使用该参数来调整坐标轴、图例和标签

#reorder 根据数值型变量对分类变量进行重新排序
#reorder is a generic function. The "default" method treats its first argument as a categorical variable, and reorders its levels based on the values of a second variable, usually numeric.
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值