-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
DOC: Boxplot color demo update #7324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
||
import matplotlib.pyplot as plt | ||
import numpy as np | ||
|
||
# Random test data | ||
np.random.seed(123) | ||
all_data = [np.random.normal(0, std, 100) for std in range(1, 4)] | ||
all_data = [np.random.normal(0, std, size=(100, 4)) for std in range(1, 4)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason to not keep the size as just 100?
I added some minor typo fixes, and additional axes labels that I think are useful. |
Can you please rebase and remove the extra merge commit? |
bbb9994
to
8291567
Compare
👍 Looks good to me! |
@NelleV thanks for the merge. Looks like Travis as happy & AppVeyor canceled itself after the merge (phew) |
I'll take care of it as soon I can get back on GH. See my comment to Paul On Fri, Oct 21, 2016 at 11:55 AM, Elliott Sales de Andrade <
|
Thanks Paul. I'm getting notification emails, but I can access github.com On Fri, Oct 21, 2016 at 10:58 AM, Paul Ivanov [email protected]
|
I meant to. Thanks for catching that. On Fri, Oct 21, 2016 at 10:18 AM, Paul Ivanov [email protected]
|
Err, those got through a bit late... |
supersedes #6488 and #7317