albertaloop / GUI

0 stars 0 forks source link

Class for saving data from telemetry model into a file #3

Open Iyury1 opened 6 months ago

Iyury1 commented 6 months ago

Create new class in GUI model

Iyury1 commented 6 months ago

The class could be named something like "Database". The packet fields should be saved as rows in a Pandas dataframe.

I Googled for "time series analysis in python", and found these three links. Each example uses the Pandas dataframe. https://builtin.com/data-science/time-series-python https://www.analyticsvidhya.com/blog/2021/10/a-comprehensive-guide-to-time-series-analysis/ https://www.kaggle.com/code/prashant111/complete-guide-on-time-series-analysis-in-python

Pandas docs: https://pandas.pydata.org/pandas-docs/stable/index.html https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html