Skip to content

Instantly share code, notes, and snippets.

@bsamuel-ui
Created April 5, 2018 18:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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.
Run many log plots of a uniform distribution
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')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment