matplotlib绘图实例演示标记路径


Posted in Python onJanuary 23, 2018

标记路径

演示效果:

matplotlib绘图实例演示标记路径

实例代码

import matplotlib.pyplot as plt
import matplotlib.path as mpath
import numpy as np


star = mpath.Path.unit_regular_star(6)
circle = mpath.Path.unit_circle()
# concatenate the circle with an internal cutout of the star
verts = np.concatenate([circle.vertices, star.vertices[::-1, ...]])
codes = np.concatenate([circle.codes, star.codes])
cut_star = mpath.Path(verts, codes)


plt.plot(np.arange(10)**2, '--r', marker=cut_star, markersize=15)

plt.show()

总结

以上就是本文关于matplotlib绘图实例演示标记路径的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!

Python 相关文章推荐
使用SAE部署Python运行环境的教程
May 05 Python
Python中的super()方法使用简介
Aug 14 Python
Python 数据处理库 pandas进阶教程
Apr 21 Python
对Python3 解析html的几种操作方式小结
Feb 16 Python
python之当你发现QTimer不能用时的解决方法
Jun 21 Python
爬虫代理池Python3WebSpider源代码测试过程解析
Dec 20 Python
对pytorch的函数中的group参数的作用介绍
Feb 18 Python
浅谈JupyterNotebook导出pdf解决中文的问题
Apr 22 Python
深入了解Python 变量作用域
Jul 24 Python
Python3爬虫关于代理池的维护详解
Jul 30 Python
python中pop()函数的语法与实例
Dec 01 Python
Django视图类型总结
Feb 17 Python
Android基于TCP和URL协议的网络编程示例【附demo源码下载】
Jan 23 #Python
Python实现PS图像抽象画风效果的方法
Jan 23 #Python
matplotlib作图添加表格实例代码
Jan 23 #Python
Python使用pip安装报错:is not a supported wheel on this platform的解决方法
Jan 23 #Python
Django实现组合搜索的方法示例
Jan 23 #Python
50行Python代码实现人脸检测功能
Jan 23 #Python
Python基于OpenCV实现视频的人脸检测
Jan 23 #Python
You might like
js继承 Base类的源码解析
2008/12/30 Javascript
学习ExtJS border布局
2009/10/08 Javascript
ExtJS的FieldSet的column列布局
2009/11/20 Javascript
javascript中的作用域和上下文使用简要概述
2013/12/05 Javascript
JavaScript定义类的几种方式总结
2014/01/06 Javascript
JavaScript的React框架中的JSX语法学习入门教程
2016/03/05 Javascript
AngularJS使用带属性值的ng-app指令实现自定义模块自动加载的方法
2017/01/04 Javascript
bootstrap的常用组件和栅格式布局详解
2017/05/02 Javascript
Vue 监听列表item渲染事件方法
2018/09/06 Javascript
js中的reduce()函数讲解
2019/01/18 Javascript
layui实现给某一列加点击事件
2019/10/26 Javascript
[04:03]辉夜杯主赛事 12月25日RECAP精彩回顾
2015/12/26 DOTA
python解析发往本机的数据包示例 (解析数据包)
2014/01/16 Python
python发送邮件示例(支持中文邮件标题)
2014/02/16 Python
python通过urllib2获取带有中文参数url内容的方法
2015/03/13 Python
Python生成随机验证码的两种方法
2015/12/22 Python
Pandas之drop_duplicates:去除重复项方法
2018/04/18 Python
解决pycharm界面不能显示中文的问题
2018/05/23 Python
django框架中间件原理与用法详解
2019/12/10 Python
Django分组聚合查询实例分享
2020/04/29 Python
浅谈numpy中np.array()与np.asarray的区别以及.tolist
2020/06/03 Python
python爬取音频下载的示例代码
2020/10/19 Python
使用CSS3制作倾斜导航条和毛玻璃效果
2017/09/12 HTML / CSS
Html5 video标签视频的最佳实践
2020/02/26 HTML / CSS
计算机系毕业生推荐信
2013/11/06 职场文书
会计系中文个人求职信
2013/12/24 职场文书
幼儿园亲子活动方案
2014/01/29 职场文书
新闻编辑自荐书范文
2014/02/12 职场文书
我的小天地教学反思
2014/04/30 职场文书
2014年学生会部门工作总结
2014/11/07 职场文书
《穷人》教学反思
2016/02/19 职场文书
MySQL数据迁移相关总结
2021/04/29 MySQL
python spilt()分隔字符串的实现示例
2021/05/21 Python
Oracle更换为MySQL遇到的问题及解决
2021/05/21 Oracle
台式电脑蓝牙适配器怎么安装?台式电脑蓝牙适配器安装教程
2022/04/08 数码科技
Consul在linux环境的集群部署
2022/04/08 Servers