We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We should ensure all datasets have a plot method.
This gives users a consistent API with which to plot and visualize data.
The following datasets are missing a plot method:
Once these datasets have a plot method, we should add:
@abc.abstractmethod def plot(...):
to GeoDataset and NonGeoDataset to make sure no new datasets are added without a plot method.
GeoDataset
NonGeoDataset
Note that we may need to add default plot methods to the following subclasses to make sure they remain useful:
plot
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
We should ensure all datasets have a plot method.
Rationale
This gives users a consistent API with which to plot and visualize data.
Implementation
The following datasets are missing a plot method:
Once these datasets have a plot method, we should add:
to
GeoDataset
andNonGeoDataset
to make sure no new datasets are added without a plot method.Note that we may need to add default
plot
methods to the following subclasses to make sure they remain useful:Alternatives
No response
Additional information
No response
The text was updated successfully, but these errors were encountered: