P=tutu

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')

 

你可能感兴趣的:(P=tutu)