Closed scottgullaksen closed 4 years ago
Let's start off by making a simple script in plotter.py that converts retrieved contents from files into pandas dataframes. Functionality can be moved later on if required/more beneficial.
ML algoritmes usually accept numy arrays, so it might make sense to seperate that functionalitty from the pickled reader class
solution: to_dataframe method. In short: Returns a dict of dataframes corresponding to each station where the dataframe holds the measurments for that station
Update: There's now included an optional argument (df) in reader.py's get_data method for retrieving the dataset as a pandas dataframe.
Description
After having a mechanism of reading from preprocessed dataset we woul like to have a mechansim for exporting this data as pandas dataframes. More compatible with plotting functions.
Consideratons