-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Scatterplot Update for #3473 #4930
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
def __init__(self, data, **kwargs): | ||
MPLPlot.__init__(self, data, **kwargs) | ||
#kwargs = self.kwargs | ||
#print kwargs |
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.
take out these comments
Thanks for your extensive comments. I tried to address all of them although the choice of some of the defualts around subplotting I simply copied from another Class (Line or Bar , I forget which) - so I didn't really think through the behavior there. Can I bug you about git one more time? To make my changed I made a new branch, |
First things first:
About |
All the code is in |
If all of your code is in git fetch upstream
git checkout scatterplot2
git reset upstream/master.. # reset everything back to, but not including, your current upstream/master
git stash # just in case you need something that you forgot :)
git rebase upstream/master
git merge scatterplot3
# if all goes well
git stash drop stash@{0}
git branch -D scatterplot3
git push --force |
Assuming you've set up your Travis-CI hook before doing all of that, it should subsequently run the test suite pretty soon after you run |
@@ -420,37 +420,6 @@ def test_explicit_label(self): | |||
self.assertEqual(ax.xaxis.get_label().get_text(), 'LABEL') | |||
|
|||
@slow | |||
def test_plot_xy(self): |
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.
I don't think this should have been removed?
@jorisvandenbossche Thanks for the code review, however, this branch should be closed. The updated code is in #3473. This PR should be closed/deleted. |
@zachcp OK! |
Rebased Code for Scatterplot targetting bug #3473