Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

Commit

Permalink
weird table
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjoeoui committed Oct 19, 2023
1 parent 098fedb commit 5a6bec8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
4 changes: 1 addition & 3 deletions AI_ML/PREDICT_TIME_SERIES/PROPHET_PREDICT/example.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
In this example, the `TIMESERIES` node generates random time series data

<!-- '<table border="1" class="dataframe"> <thead> <tr style="text-align: right;"> <th></th> <th>Timestamp</th> <th>Data</th> </tr> </thead> <tbody> <tr> <th>0</th> <td>2023-01-01</td> <td>-0.187903</td> </tr> <tr> <th>1</th> <td>2023-01-02</td> <td>0.204290</td> </tr> <tr> <th>2</th> <td>2023-01-03</td> <td>-0.659945</td> </tr> </tbody></table>' -->

This dataframe is then passed to the `PROPHET_PREDICT` node, with the default parameters
of `run_forecast=True` and `periods=365`. This node trains a `Prophet` model and runs a prediction
forecast over a 365 period.
Expand All @@ -16,4 +14,4 @@ It returns a DataContainer with the following

Finally, this is passed to 2 nodes, `PROPHET_PLOT` and `PROPHET_COMPONENTS`, wherein
the forecast and the trend components are plotted in Plotly. Because a forecast was already run,
the `PROPHET_PLOT` and `PROPHET_COMPONENTS` nodes know to use the already predicted dataframe.
the `PROPHET_PLOT` and `PROPHET_COMPONENTS` nodes know to use the already predicted dataframe.
4 changes: 1 addition & 3 deletions VISUALIZERS/PLOTLY/PROPHET_COMPONENTS/example.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
In this example, the `TIMESERIES` node generates random time series data

<!-- '<table border="1" class="dataframe"> <thead> <tr style="text-align: right;"> <th></th> <th>Timestamp</th> <th>Data</th> </tr> </thead> <tbody> <tr> <th>0</th> <td>2023-01-01</td> <td>-0.187903</td> </tr> <tr> <th>1</th> <td>2023-01-02</td> <td>0.204290</td> </tr> <tr> <th>2</th> <td>2023-01-03</td> <td>-0.659945</td> </tr> </tbody></table>' -->

This dataframe is then passed to the `PROPHET_PREDICT` node, with the default parameters
of `run_forecast=True` and `periods=365`. This node trains a `Prophet` model and runs a prediction
forecast over a 365 period.
Expand All @@ -16,4 +14,4 @@ It returns a DataContainer with the following

Finally, this is passed to 2 nodes, `PROPHET_PLOT` and `PROPHET_COMPONENTS`, wherein
the forecast and the trend components are plotted in Plotly. Because a forecast was already run,
the `PROPHET_PLOT` and `PROPHET_COMPONENTS` nodes know to use the already predicted dataframe.
the `PROPHET_PLOT` and `PROPHET_COMPONENTS` nodes know to use the already predicted dataframe.
4 changes: 1 addition & 3 deletions VISUALIZERS/PLOTLY/PROPHET_PLOT/example.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
In this example, the `TIMESERIES` node generates random time series data

<!-- '<table border="1" class="dataframe"> <thead> <tr style="text-align: right;"> <th></th> <th>Timestamp</th> <th>Data</th> </tr> </thead> <tbody> <tr> <th>0</th> <td>2023-01-01</td> <td>-0.187903</td> </tr> <tr> <th>1</th> <td>2023-01-02</td> <td>0.204290</td> </tr> <tr> <th>2</th> <td>2023-01-03</td> <td>-0.659945</td> </tr> </tbody></table>' -->

This dataframe is then passed to the `PROPHET_PREDICT` node, with the default parameters
of `run_forecast=True` and `periods=365`. This node trains a `Prophet` model and runs a prediction
forecast over a 365 period.
Expand All @@ -16,4 +14,4 @@ It returns a DataContainer with the following

Finally, this is passed to 2 nodes, `PROPHET_PLOT` and `PROPHET_COMPONENTS`, wherein
the forecast and the trend components are plotted in Plotly. Because a forecast was already run,
the `PROPHET_PLOT` and `PROPHET_COMPONENTS` nodes know to use the already predicted dataframe.
the `PROPHET_PLOT` and `PROPHET_COMPONENTS` nodes know to use the already predicted dataframe.

0 comments on commit 5a6bec8

Please sign in to comment.