reading-notes


Project maintained by will-ing Hosted on GitHub Pages — Theme by mattgraham

Matplotlib

matpoltlib - provides both a very quick way to visualize data from Python and publication-quality figures in many formats

plyplot - the majority of plotting commands in pyplot have Matlab(TM) analogs with similar arguments.

plt.figure(figsize=(10,6), dpi=80)
plt.plot(X, C, color="blue", linewidth=2.5, linestyle="-")
plt.plot(X, S, color="red",  linewidth=2.5, linestyle="-")

Seaborn - is a Python data visualization library based on matplotlib. It provides a high-level interface for drawing attractive and informative statistical graphics.

Main Page