vnpy/vn.training/t1.py
msincenselee aa489ea31b mysql
2015-10-08 00:27:06 +08:00

7 lines
124 B
Python

# encoding: UTF-8
import matplotlib.pyplot as plt
plt.plot([10,20,30])
plt.xlabel('times')
plt.ylabel('numbers')
plt.show()