Skip to content
Snippets Groups Projects
Commit 15881111 authored by Sortofamudkip's avatar Sortofamudkip
Browse files

remove plotting functions from Dataset func

parent 90e5052c
No related branches found
No related tags found
No related merge requests found
...@@ -75,15 +75,6 @@ class Dataset: ...@@ -75,15 +75,6 @@ class Dataset:
""" """
return self.dataframe return self.dataframe
def draw_histogram(self):
raise NotImplementedError
def get_dataset_columns(self) -> list:
return self.dataframe.columns
def get_plottable_columns(self) -> list:
raise NotImplementedError
def get_sorted_column( def get_sorted_column(
self, colname: str, ascending: bool = True self, colname: str, ascending: bool = True
) -> pd.Series: ) -> pd.Series:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment