python+matplotlib实现礼盒柱状图实例代码


Posted in Python onJanuary 16, 2018

演示结果:

python+matplotlib实现礼盒柱状图实例代码

完整代码:

import matplotlib.pyplot as plt
import numpy as np
from matplotlib.image import BboxImage

from matplotlib._png import read_png
import matplotlib.colors
from matplotlib.cbook import get_sample_data


class RibbonBox(object):

  original_image = read_png(get_sample_data("Minduka_Present_Blue_Pack.png",
                       asfileobj=False))
  cut_location = 70
  b_and_h = original_image[:, :, 2]
  color = original_image[:, :, 2] - original_image[:, :, 0]
  alpha = original_image[:, :, 3]
  nx = original_image.shape[1]

  def __init__(self, color):
    rgb = matplotlib.colors.to_rgba(color)[:3]

    im = np.empty(self.original_image.shape,
           self.original_image.dtype)

    im[:, :, :3] = self.b_and_h[:, :, np.newaxis]
    im[:, :, :3] -= self.color[:, :, np.newaxis]*(1. - np.array(rgb))
    im[:, :, 3] = self.alpha

    self.im = im

  def get_stretched_image(self, stretch_factor):
    stretch_factor = max(stretch_factor, 1)
    ny, nx, nch = self.im.shape
    ny2 = int(ny*stretch_factor)

    stretched_image = np.empty((ny2, nx, nch),
                  self.im.dtype)
    cut = self.im[self.cut_location, :, :]
    stretched_image[:, :, :] = cut
    stretched_image[:self.cut_location, :, :] = \
      self.im[:self.cut_location, :, :]
    stretched_image[-(ny - self.cut_location):, :, :] = \
      self.im[-(ny - self.cut_location):, :, :]

    self._cached_im = stretched_image
    return stretched_image


class RibbonBoxImage(BboxImage):
  zorder = 1

  def __init__(self, bbox, color,
         cmap=None,
         norm=None,
         interpolation=None,
         origin=None,
         filternorm=1,
         filterrad=4.0,
         resample=False,
         **kwargs
         ):

    BboxImage.__init__(self, bbox,
              cmap=cmap,
              norm=norm,
              interpolation=interpolation,
              origin=origin,
              filternorm=filternorm,
              filterrad=filterrad,
              resample=resample,
              **kwargs
              )

    self._ribbonbox = RibbonBox(color)
    self._cached_ny = None

  def draw(self, renderer, *args, **kwargs):

    bbox = self.get_window_extent(renderer)
    stretch_factor = bbox.height / bbox.width

    ny = int(stretch_factor*self._ribbonbox.nx)
    if self._cached_ny != ny:
      arr = self._ribbonbox.get_stretched_image(stretch_factor)
      self.set_array(arr)
      self._cached_ny = ny

    BboxImage.draw(self, renderer, *args, **kwargs)


if 1:
  from matplotlib.transforms import Bbox, TransformedBbox
  from matplotlib.ticker import ScalarFormatter

  # Fixing random state for reproducibility
  np.random.seed(19680801)

  fig, ax = plt.subplots()

  years = np.arange(2004, 2009)
  box_colors = [(0.8, 0.2, 0.2),
         (0.2, 0.8, 0.2),
         (0.2, 0.2, 0.8),
         (0.7, 0.5, 0.8),
         (0.3, 0.8, 0.7),
         ]
  heights = np.random.random(years.shape) * 7000 + 3000

  fmt = ScalarFormatter(useOffset=False)
  ax.xaxis.set_major_formatter(fmt)

  for year, h, bc in zip(years, heights, box_colors):
    bbox0 = Bbox.from_extents(year - 0.4, 0., year + 0.4, h)
    bbox = TransformedBbox(bbox0, ax.transData)
    rb_patch = RibbonBoxImage(bbox, bc, interpolation="bicubic")

    ax.add_artist(rb_patch)

    ax.annotate(r"%d" % (int(h/100.)*100),
          (year, h), va="bottom", ha="center")

  patch_gradient = BboxImage(ax.bbox,
                interpolation="bicubic",
                zorder=0.1,
                )
  gradient = np.zeros((2, 2, 4), dtype=float)
  gradient[:, :, :3] = [1, 1, 0.]
  gradient[:, :, 3] = [[0.1, 0.3], [0.3, 0.5]] # alpha channel
  patch_gradient.set_array(gradient)
  ax.add_artist(patch_gradient)

  ax.set_xlim(years[0] - 0.5, years[-1] + 0.5)
  ax.set_ylim(0, 10000)

  fig.savefig('ribbon_box.png')
  plt.show()

总结

以上就是本文关于python+matplotlib实现礼盒柱状图实例代码的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!

Python 相关文章推荐
Python的Flask框架中Flask-Admin库的简单入门指引
Apr 07 Python
Python实现的数据结构与算法之双端队列详解
Apr 22 Python
python中PIL安装简单教程
Apr 21 Python
Python处理Excel文件实例代码
Jun 20 Python
Python统计单词出现的次数
Apr 04 Python
Python中list查询及所需时间计算操作示例
Jun 21 Python
python机器学习之KNN分类算法
Aug 29 Python
Python+selenium 获取浏览器窗口坐标、句柄的方法
Oct 14 Python
使用python实现滑动验证码功能
Aug 05 Python
Pytorch Tensor的统计属性实例讲解
Dec 30 Python
python调用百度AI接口实现人流量统计
Feb 03 Python
Python几种酷炫的进度条的方式
Apr 11 Python
Python+matplotlib实现填充螺旋实例
Jan 15 #Python
python+matplotlib实现鼠标移动三角形高亮及索引显示
Jan 15 #Python
wxPython之解决闪烁的问题
Jan 15 #Python
详细解读tornado协程(coroutine)原理
Jan 15 #Python
Python之ReportLab绘制条形码和二维码的实例
Jan 15 #Python
Tornado高并发处理方法实例代码
Jan 15 #Python
使用Python实现windows下的抓包与解析
Jan 15 #Python
You might like
扩展你的 PHP 之入门篇
2006/12/04 PHP
php动态生成JavaScript代码
2009/03/09 PHP
SWFUpload与CI不能正确上传识别文件MIME类型解决方法分享
2011/04/18 PHP
高性能PHP框架Symfony2经典入门教程
2014/07/08 PHP
PHP限制HTML内容中图片必须是本站的方法
2015/06/16 PHP
JavaScript类和继承 constructor属性
2010/03/04 Javascript
js AppendChild与insertBefore用法详细对比
2013/12/16 Javascript
Javascript的&&和||的另类用法
2014/07/23 Javascript
jQuery实现仿百度首页滑动伸缩展开的添加服务效果代码
2015/09/09 Javascript
uploadify多文件上传参数设置技巧
2015/11/16 Javascript
JS组件系列之Bootstrap table表格组件神器【二、父子表和行列调序】
2016/05/10 Javascript
jQuery动态添加可拖动元素完整实例(附demo源码下载)
2016/06/21 Javascript
JS IOS/iPhone的Safari浏览器不兼容Javascript中的Date()问题如何解决
2016/11/11 Javascript
bootstrap实现图片自动轮播
2016/12/21 Javascript
Nodejs 和Session 原理及实战技巧小结
2017/08/25 NodeJs
jquery应用实例分享_实现手风琴特效
2018/02/01 jQuery
webpack4 css打包压缩问题的解决
2018/05/18 Javascript
javascript json对象小技巧之键名作为变量用法分析
2019/11/11 Javascript
Element Rate 评分的使用方法
2020/07/27 Javascript
python实现ipsec开权限实例
2014/11/11 Python
python判断一个集合是否为另一个集合的子集方法
2018/05/04 Python
Python重新加载模块的实现方法
2018/10/16 Python
vim自动补全插件YouCompleteMe(YCM)安装过程解析
2019/10/21 Python
萨克斯第五大道的折扣店:Saks Fifth Avenue OFF 5TH
2016/08/25 全球购物
信息管理专业学生自荐信格式
2013/09/22 职场文书
市场营销专业应届生自荐信
2014/06/19 职场文书
2014年党课学习心得体会
2014/07/08 职场文书
招商引资工作汇报材料
2014/10/28 职场文书
小班上学期幼儿评语
2014/12/30 职场文书
家装业务员岗位职责
2015/04/03 职场文书
2015年语言文字工作总结
2015/07/23 职场文书
董事长秘书工作总结
2015/08/14 职场文书
pytorch 实现在测试的时候启用dropout
2021/05/27 Python
Mysql文件存储图文详解
2021/06/01 MySQL
教你使用Python获取QQ音乐某个歌手的歌单
2022/04/03 Python
部分武汉产收音机展览
2022/04/07 无线电