matplotlib 绘图时的格式字符串 (format string)详解
格式字符串的使用方式
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(x, y, 'og--') # 圆圈标记,绿色,虚线
顺便提一句,mark设置为'o'时,画出的圆标记是实心圆。如果希望画出的圆标记是空心圆,设置 markerfacecolor 为 'None' 就可以了
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(x, y, 'og--') # 圆圈标记,绿色,虚线
顺便提一句,mark设置为'o'时,画出的圆标记是实心圆。如果希望画出的圆标记是空心圆,设置 markerfacecolor 为 'None' 就可以了
© 2020 Q Cloud By Qi. All Rights Reserved 冀ICP备20003377号-1 冀公网安备 13010402001886号