Created
April 5, 2018 18:30
-
-
Save bsamuel-ui/24871bef547b4f7cc879d3a1d5ca7c46 to your computer and use it in GitHub Desktop.
Run many log plots of a uniform distribution
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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