-
-
Notifications
You must be signed in to change notification settings - Fork 25.9k
[MRG+1] Don't use deprecated 1d X (or deprecated matplotlib stuff) in examples #5721
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
[MRG+1] Don't use deprecated 1d X (or deprecated matplotlib stuff) in examples #5721
Conversation
a73d8a6
to
6193a9b
Compare
LGTM. +1 for merge |
Does this fix #5716? |
@rvraghav93 yes |
6193a9b
to
5b1aca0
Compare
ping @agramfort ;) |
@@ -113,7 +113,7 @@ | |||
Y = tsne.fit_transform(X) | |||
t1 = time() | |||
print("t-SNE: %.2g sec" % (t1 - t0)) | |||
ax = fig.add_subplot(250) | |||
ax = fig.add_subplot(2, 5, 10) |
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.
are you sure about the 10 ?
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.
yes. they deprecated the previous syntax because it was real weird ;)
besides +1 for merge |
[MRG+1] Don't use deprecated 1d X (or deprecated matplotlib stuff) in examples
thanks @amueller |
This has already been backported to 0.17.X apparently. |
No description provided.