当前位置:网站首页>positioner
positioner
2022-04-23 17:58:00 【Feng Ye 520】
import matplotlib.pyplot as mp
import numpy as np
mp.figure(facecolor='lightgray')
locators = [
'mp.NullLocator()',
'mp.MaxNLocator(nbins=3,steps=[1,3,5,7,9])',
'mp.FixedLocator(locs=[0,2.5,5,7.5,10])',
'mp.AutoLocator()',
'mp.IndexLocator(offset=0.5,base=1.5)',
'mp.MultipleLocator()',
'mp.LinearLocator(numticks=6)',
'mp.LogLocator(base=2,subs=[1.0])'
]
n_locators = len(locators)
for i, locator in enumerate(locators):
mp.subplot(n_locators, 1, i + 1)
mp.xlim(0, 10)
mp.ylim(-1, 1)
mp.yticks(())
ax = mp.gca()
ax.spines['left'].set_color('none')
ax.spines['top'].set_color('none')
ax.spines['right'].set_color('none')
ax.spines['bottom'].set_position(('data', 0))
ax.xaxis.set_major_locator(eval(locator))
ax.xaxis.set_minor_locator(mp.MultipleLocator(0.1))
mp.plot(np.arange(11), np.zeros(11), c='none')
mp.text(5, 0.3, locator[3:], ha='center', size=12)
mp.tight_layout()
mp.show()
# Running results :


版权声明
本文为[Feng Ye 520]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204230546134331.html
边栏推荐
- .104History
- Nanotechnology + AI enabled proteomics | Luomi life technology completed nearly ten million US dollars of financing
- 20222 return to the workplace
- The JS timestamp of wechat applet is converted to / 1000 seconds. After six hours and one day, this Friday option calculates the time
- 2022 Shanghai safety officer C certificate operation certificate examination question bank and simulation examination
- Go语言JSON包使用
- Gets the time range of the current week
- Encapsulate a timestamp to date method on string prototype
- Kubernetes service discovery monitoring endpoints
- C#字节数组(byte[])和字符串相互转换
猜你喜欢
随机推荐
Leak detection and vacancy filling (VII)
列錶的使用-增删改查
Special effects case collection: mouse planet small tail
Summary of common server error codes
C1小笔记【任务训练篇二】
ros常用的函数——ros::ok(),ros::Rate,ros::spin()和ros::spinOnce()
Error in created hook: "referenceerror:" promise "undefined“
C# 的数据流加密与解密
Tell the truth of TS
C network related operations
Amount input box, used for recharge and withdrawal
2022 Jiangxi Photovoltaic Exhibition, China distributed Photovoltaic Exhibition, Nanchang solar energy utilization Exhibition
Notes on common basic usage of eigen Library
Dry goods | how to extract thumbnails quickly?
C language implements memcpy, memset, strcpy, strncpy, StrCmp, strncmp and strlen
Thirteen documents in software engineering
Anchor location - how to set the distance between the anchor and the top of the page. The anchor is located and offset from the top
SQL optimization for advanced learning of MySQL [insert, primary key, sort, group, page, count]
Comparison between xtask and kotlin coroutine
C1小笔记【任务训练篇一】

![[appium] write scripts by designing Keyword Driven files](/img/05/536701f39dcf8474e90e58738f2094.png)







