Skip to content

Instantly share code, notes, and snippets.

@bsamuel-ui
Created April 5, 2018 18:30
Show Gist options
  • Save bsamuel-ui/24871bef547b4f7cc879d3a1d5ca7c46 to your computer and use it in GitHub Desktop.
Save bsamuel-ui/24871bef547b4f7cc879d3a1d5ca7c46 to your computer and use it in GitHub Desktop.

Revisions

  1. bsamuel-ui created this gist Apr 5, 2018.
    7 changes: 7 additions & 0 deletions many_uniform_plots.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    import numpy as np
    %matplotlib inline
    from seaborn import tsplot

    stars_planets = np.sort(0.05 + np.random.rand(100, 8), axis=1)

    tsplot(np.log(stars_planets), err_style='unit_traces')