上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 56 下一页
摘要: 一、直线、散点图、插值 1.3D绘图与2D绘图区别 3D绘图与2D绘图的调用方法几乎相同,除了增加一个 projection='3d'的关键字参数。 import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D fig 阅读全文
posted @ 2019-12-25 21:43 nxf_rabbit75 阅读(1131) 评论(0) 推荐(1) 编辑
摘要: 一、matplotlib的坐标系 1.matplotlib的四个坐标系: 用户级的data坐标系:坐标转换对象为ax.transData。它是用户级坐标系,由xlim和ylim控制 Axes坐标系:坐标转换对象为ax.transAxes。它是Axes的坐标系,(0,0)为Axes的左下角,(1,1) 阅读全文
posted @ 2019-12-25 21:42 nxf_rabbit75 阅读(2075) 评论(0) 推荐(1) 编辑
摘要: 1.matplotlib的patheffects模块 matplotlib的patheffects模块提供了一些函数来绘制path effect,该模块还定义了很多effect类。可以应用path effect的Artist有:Patch、Line2D、Collection以及Text。每个Arti 阅读全文
posted @ 2019-12-25 21:41 nxf_rabbit75 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 1.matplotlib.patch基本用法 matplotlib.patch对象底层的对象就是Path。它的基本用法如下: import matplotlib.pyplot as plt from matplotlib.path import Path import matplotlib.patc 阅读全文
posted @ 2019-12-25 21:40 nxf_rabbit75 阅读(597) 评论(0) 推荐(0) 编辑
摘要: 1. 简单布局add_subplot/subplot/subplots 1.1 Figure.add_subplot(*args,**kwargs) 简单布局通过方法来完成,它返回的是Axes实例。当然你也可以通过pyplot.subplot(*args,**kwargs)函数来完成,他返回的也是A 阅读全文
posted @ 2019-12-25 21:39 nxf_rabbit75 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 一、matplotlib、pyplot 、pylab关系 1.matplotlib被划分为不同的层次: matplotlib.pyplot模块:位于matplotlib的顶层,它是一个state-machine environment。该模块中的很多函数是用于给当前Figure的当前Axes添加pl 阅读全文
posted @ 2019-12-25 21:37 nxf_rabbit75 阅读(1222) 评论(0) 推荐(0) 编辑
摘要: 一、matplotlib 1.matplotlib有三个层次的API matplotlib.backend_bases.FigureCanvas:代表了一个绘图区,在这个绘图区上图表被绘制 matplotlib.backend_bases.Renderer:代表了渲染器,它知道如何在绘图区上绘图。 阅读全文
posted @ 2019-12-25 21:35 nxf_rabbit75 阅读(1018) 评论(0) 推荐(0) 编辑
摘要: matplotlib配置信息是从配置文件中读取的。在配置文件中可以为matplotlib几乎所有的属性指定永久有效的默认值。 1.查看配置 import matplotlib matplotlib.rcParams 结果: RcParams({'_internal.classic_mode': Fa 阅读全文
posted @ 2019-12-25 21:20 nxf_rabbit75 阅读(1432) 评论(0) 推荐(0) 编辑
摘要: pandas.Series.plot Series.plot(kind='line', ax=None, figsize=None, use_index=True, title=None, grid=None, legend=False, style=None, logx=False, logy=F 阅读全文
posted @ 2019-12-25 21:12 nxf_rabbit75 阅读(9313) 评论(0) 推荐(1) 编辑
摘要: 1.seaborn基本设置 将 Seaborn 提供的样式声明代码 sns.set() 放置在绘图前,就可以设置图像的样式 seaborn.set(context='notebook', style='darkgrid', palette='deep', font='sans-serif', fon 阅读全文
posted @ 2019-12-25 20:11 nxf_rabbit75 阅读(601) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 56 下一页