pandas 数据处理 教学资料6.2.2嵌入式绘图 中职专用.pdf
-
资源ID:90567981
资源大小:247.25KB
全文页数:2页
- 资源格式: PDF
下载积分:5金币
快捷下载
会员登录下载
微信登录下载
三方登录下载:
微信扫一扫登录
友情提示
2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
|
pandas 数据处理 教学资料6.2.2嵌入式绘图 中职专用.pdf
matplotlib.axes.Axes.inset_axes Axes.inset_axes(bounds,*,transform=None,zorder=5,*kwargs)source Add a child inset Axes to this existing Axes.Parameters boundsx0,y0,width,height Lower-left corner of inset Axes,and its width and height.transformTransform Defaults to ax.transAxes,i.e.the units of rect are in Axes-relative coordinates.zordernumber Defaults to 5(same as Axes.legend).Adjust higher or lower to change whether it is above or below data plotted on the parent Axes.*kwargs Other keyword arguments are passed on to the child Axes.Returns ax The created Axes instance.Warning This method is experimental as of 3.0,and the API may change.Examples This example makes two inset Axes,the first is in Axes-relative coordinates,and the second in data-coordinates:fig,ax=plt.subplots()ax.plot(range(10)axin1=ax.inset_axes(0.8,0.1,0.15,0.15)axin2=ax.inset_axes(5,7,2.3,2.3,transform=ax.transData)Examples using matplotlib.axes.Axes.inset_axes Placing Colorbars