vnpy/vn.training/t1.py

7 lines
124 B
Python
Raw Normal View History

2015-10-07 16:27:06 +00:00
# encoding: UTF-8
import matplotlib.pyplot as plt
plt.plot([10,20,30])
plt.xlabel('times')
plt.ylabel('numbers')
plt.show()