-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Inconsistent color arguments #11228
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
Comments
hmm that seems wrong |
Since I don't really know the code in pandas, I would prefer not to mess around with it. Also, I have to admit that I have close to zero experience with pr's. |
This was intentional to be compat with mpl (#6976).
I'm not sure which kwds should be used here.
|
Don't forget that we also accept |
@sumitbinnani There is an existing logic to handle https://github.com/pydata/pandas/blob/master/pandas/tools/plotting.py#L925 |
Kindly correct me if the above changes does not meet the requirements, and something else needs to be taken care of, @sinhrks? |
Looks OK. One concern is MPL http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.hexbin |
In pandas 0.17.0.rc1 there is an inconsistency in the color arguments: once it is "color", other times it is "colors":
df.plot(kind='bar', color= ....)
df.plot(kind='pie', colors= ...)
The text was updated successfully, but these errors were encountered: