plot matplotlib putus
plot(x, y, color='green', linestyle='dashed', marker='o',
markerfacecolor='blue', markersize=12).
Blushing Butterfly
plot(x, y, color='green', linestyle='dashed', marker='o',
markerfacecolor='blue', markersize=12).
import matplotlib.pyplot as plt
import numpy as np
plt.plot(np.random.rand(30),'--')
plt.show()