-
-
Notifications
You must be signed in to change notification settings - Fork 358
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
Support for SubDataFrame and other DataFrame Types #105
Comments
Hi, Thanks. |
You can't. See StatPlots for plotting of DataFrames |
Ok, thank you. I already check StatPlots but it's the same error :) |
Yes because there is no recipe for DataFrames. If you have a use case that isn't covered by the functionality in StatPlots you're welcome to open an issue with the example. |
Thank you. I open an issue in StatPlots to explain the case. |
The DataFrames package may produce derivative types depending on the operations performed. For example, if you take a view into a DataFrame, you get a SubDataFrame. A groupby gives a GroupedDataFrame, etc.
Plots.jl can be easily modified to support all of these by changing the function signatures to accept the AbstractDataFrame type. In particular, the functions in plot.jl
dataframes()
can be modified like this:The text was updated successfully, but these errors were encountered: