Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 1.34 KB

File metadata and controls

26 lines (15 loc) · 1.34 KB

Plotting data.

Most everyone at the meeting either always wraps around Matplotlib or else, does that but uses GNUplot for quick, anonymous plots.

Matplotlib.

fig, ax = subplots(2,1) is a useful starting point. Then work with ax.plot(...) and so on.

Great addons:

Building on Matplotlib.

I have a tool built on Matplotlib and Pandas that I can use for basically everything here.

Paul has some scripts.

Quick ASCII Plots for "Previews" of Results:

I have a simple script which uses GNUplot to make ascii plots. Currently, it is set up just for afqmclab results. Feel free to copy/reuse any code from it.

High-dimensional data.

Seaborn's pairplot for viewing correlations and distribution.