ggplot绘制柱状图 python_ggplot2绘制漂亮的直方图

这篇博客介绍了如何利用ggplot2库在Python中创建吸引人的直方图。从基本的直方图绘制开始,逐步讲解如何通过分组、调整颜色、去除图例、改变色调、饱和度和亮度,以及设置主题来定制图表。最后展示了创建封面所用的直方图样式,包括黑色背景和蓝色文字元素。
摘要由CSDN通过智能技术生成

原标题:ggplot2绘制漂亮的直方图

欢迎关注天善智能 hellobi.com,我们是专注于商业智能BI,大数据,数据分析领域的垂直社区,学习、问答、求职,一站式搞定!

对商业智能BI、大数据分析挖掘、机器学习,python,R等数据领域感兴趣的同学加微信:tstoutiao,邀请你进入数据爱好者交流群,数据爱好者们都在这儿。

今天这篇博文为大家分享如何用ggplot2绘制漂亮的直方图(如封面所示)

数据准备set.seed(070511)

d

基本直方图

library(ggplot2)ggplot(d, aes(x)) + geom_histogram(bins = 50)

通过分组添加颜色

ggplot(d, aes(x, fill = cut(x, 100))) +

geom_histogram(bins = 50)

去掉图列

ggplot(d, aes(x, fill = cut(x, 100))) +

geom_histogram(bins = 50,show.legend = FALSE)

调整色调

ggplot(d, aes(x, fill = cut(x, 100))) +

geom_histogram(show.legend = FALSE) + scale_fill_discrete(h = c(250, 10))

调整饱和度和亮度

ggplot(d, aes(x, fill = cut(x, 100))) +

geom_histogram(show.legend = FALSE) + scale_fill_discrete(h = c(240, 10), c = 120, l = 70)

设置主题

ggplot(d, aes(x, fill = cut(x, 100))) +

geom_histogram(show.legend = FALSE) + scale_fill_discrete(h = c(240, 10), c = 120, l = 70) + theme_minimal() + labs(x = "Variable X", y = "n") + ggtitle("Histogram of X")

为封面绘图

p

geom_histogram(show.legend = FALSE,bins = 50) + theme_minimal() + labs(x = "Variable X", y = "n") + ggtitle("Histogram of X",subtitle = R.version.string)+ labs(caption = "zsrnog")p + scale_fill_discrete(h = c(180, 360), c = 150, l = 80)+ theme(panel.background = element_rect(fill='black'), #panel.border = element_rect(fill='black'), plot.background = element_rect(fill='black'),

plot.title =element_text(colour = "blue"), plot.subtitle=element_text(colour = "blue"), plot.caption=element_text(colour = "blue"), axis.line = element_line(colour = "grey80"), axis.text = element_text(colour = "blue"), axis.title = element_text(colour = "grey80"))

转载请保留以下内容:

本文来源自天善社区EasyCharts老师的博客(公众号)。

原文链接: https://ask.hellobi.com/blog/EasyCharts/8048返回搜狐,查看更多

责任编辑:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值