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读取Android permission文件
Nov 01 Python
python类和函数中使用静态变量的方法
May 09 Python
Python中几个比较常见的名词解释
Jul 04 Python
编写Python脚本抓取网络小说来制作自己的阅读器
Aug 20 Python
玩转python爬虫之正则表达式
Feb 17 Python
快速入门python学习笔记
Dec 06 Python
python如何在循环引用中管理内存
Mar 20 Python
详解python异步编程之asyncio(百万并发)
Jul 07 Python
Flask框架通过Flask_login实现用户登录功能示例
Jul 17 Python
在python3中pyqt5和mayavi不兼容问题的解决方法
Jan 08 Python
Python3实现定时任务的四种方式
Jun 03 Python
django序列化serializers过程解析
Dec 14 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
一个oracle+PHP的查询的例子
2006/10/09 PHP
对盗链说再见...
2006/10/09 PHP
Linux系统下使用XHProf和XHGui分析PHP运行性能
2015/12/08 PHP
Composer设置忽略版本匹配的方法
2016/04/27 PHP
LaravelS通过Swoole加速Laravel/Lumen详解
2018/03/02 PHP
PHP通过文件保存和更新信息的方法分析
2019/09/12 PHP
总结一些js自定义的函数
2006/08/05 Javascript
可实现多表单提交的javascript函数
2007/08/01 Javascript
最佳6款用于移动网站开发的jQuery 图片滑块插件小结
2012/07/20 Javascript
当自定义数据属性为json格式字符串时jQuery的data api问题探讨
2013/02/18 Javascript
JavaScript中的操作符==与===介绍
2014/12/31 Javascript
javascript精确统计网站访问量实例代码
2015/12/19 Javascript
javascript制作照片墙及制作过程中出现的问题
2016/04/04 Javascript
相册展示PhotoSwipe.js插件实现
2016/08/25 Javascript
关于Iframe父页面与子页面之间的相互调用
2016/11/22 Javascript
jQuery插件HighCharts实现2D柱状图、折线图的组合多轴图效果示例【附demo源码下载】
2017/03/09 Javascript
浅谈angularJS的$watch失效问题的解决方案
2017/08/11 Javascript
vue学习笔记之v-if和v-show的区别
2017/09/20 Javascript
详解如何去除vue项目中的#——History模式
2017/10/13 Javascript
使用JS代码实现俄罗斯方块游戏
2018/08/03 Javascript
jQuery实现表格的增、删、改操作示例
2019/01/27 jQuery
layui table 多行删除(id获取)的方法
2019/09/12 Javascript
微信小程序搜索框样式并实现跳转到搜索页面(小程序搜索功能)
2020/03/10 Javascript
详解用js代码触发dom事件的实现方案
2020/06/10 Javascript
Python中的map()函数和reduce()函数的用法
2015/04/27 Python
选择Python写网络爬虫的优势和理由
2019/07/07 Python
解决Python3 抓取微信账单信息问题
2019/07/19 Python
Flask中endpoint的理解(小结)
2019/12/11 Python
Python实现AES加密,解密的两种方法
2020/10/03 Python
AE美国鹰美国官方网站:American Eagle Outfitters
2016/08/22 全球购物
阿迪达斯俄罗斯官方商城:adidas俄罗斯
2017/03/08 全球购物
说出数据连接池的工作机制是什么?
2013/04/19 面试题
2014年德育工作总结
2014/11/20 职场文书
2014年前台接待工作总结
2014/12/05 职场文书
货款欠条范本
2015/07/03 职场文书
详解缓存穿透击穿雪崩解决方案
2021/05/28 Redis