from matplotlib import animation
from matplotlib import pyplot
from pylab import mpl
from matplotlib import ticker
fig,ax=plt.subplots()# # 创建一个子图,返回一个包含figure和axes对象的元组,将元组分解为fig和ax两个变量
chart, = pyplot.plot([], [], 'g.')#创建2维直线图
ax.clear()
pyplot.title('')#添加图标题
pyplot.show()
chart.set_data(x, y)#x,y为列表
matplotlib.rcParams['toolbar'] = 'None'#隐藏工具栏
from pylab import mpl
mpl.rcParams['font.sans-serif'] =["SimHei"]#解决乱码问题
mpl.rcParams['axes.unicode_minus'] = False
pyplot.box(False) # 隐藏坐标轴
pyplot.axis('off')
pyplot.xlim(-2,4)#设置x轴坐标范围
pyplot.ylim(-3, 3)#设置y轴坐标范围
pyplot.text(x, y, s, fontdict=None, withdash=False, **kwargs)
"""matplotlib.pyplot.text(x, y, s, fontdict=None, withdash=False, **kwargs)
x, y:表示坐标;
s:字符串文本;
fontdict:字典,可选;
kw:fontsize=12,
horizontalalignment=‘center’、ha=’cener’
verticalalignment=’center’、va=’center’"""
ax.barh(x, y, color="")#绘制水平方向的条形图barh(y, width, height=0.8,align='center'),
ax.xaxis.set_major_formatter(ticker.StrMethodFormatter('{x:,.0f}'))#格式化x轴刻度
ax.xaxis.set_ticks_position('top')#改变x轴的位置
ax.set_axisbelow(True)#加上白色实心的网格线
ax.grid(which='major', axis= 'x', linestyle='-')
ax.tick_params(axis ='both', colors='#777777', labelsize=12)#参数axis的值为'x'、'y'、'both',分别代表设置X轴、Y轴以及同时设置,默认值为'both'。
animator=animation.FuncAnimation(fig, “函数”, frames=“迭代参数”,interval=1)#interval频率
animator.save(filename="chart.gif",writer='pillow')#保存gif
animator.save(filename="chart.mp4")
pyplot.get_current_fig_manager().full_screen_toggle()#放在plt.show()之前
# pyplot.get_current_fig_manager().full_screen_toggle()#最大化窗口显示,放在plt.show()之前,关闭不了窗口,贼尴尬
# pyplot.get_current_fig_manager().window.state('zoomed')#最大化窗口显示,放在plt.show()之前,可关闭
另外,在使用保存视频时,需要安装插件
安装ffmepg