标签:audio one control add class lib png style size
import numpy as np import matplotlib.pyplot as plt %matplotlib inline fig = plt.figure(figsize=(3, 3)) ax = fig.add_subplot(1, 1, 1) x = np.linspace(0, 5, 100) y = x a1x=[1,2,3,4] a1y=[1.1,2.2,3.1,4.1] ax.plot(x, y, ‘r-‘) ax.scatter(a1x,a1y,s=25,alpha=.5) fig.savefig(‘static_map.png‘)
标签:audio one control add class lib png style size
原文地址:https://www.cnblogs.com/Marigolci/p/12107316.html