fa9c434c86dec82249d620045bf892449cc81d31,examples/example_simple_fit.py,,,#,14

Before Change


// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Load the data and split it into separate pieces
data = pm.datasets.load_wineind()
train, test = data[:150], data[150:]

// Fit a simple auto_arima model
arima = pm.auto_arima(train, error_action="ignore", trace=True,
                      suppress_warnings=True, maxiter=10,

After Change



// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Load the data and split it into separate pieces
data = pm.datasets.load_wineind()
train, test = model_selection.train_test_split(data, train_size=150)

// Fit a simple auto_arima model
arima = pm.auto_arima(train, error_action="ignore", trace=True,
                      suppress_warnings=True, maxiter=10,
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 5

Non-data size: 7

Instances


Project Name: tgsmith61591/pmdarima
Commit Name: fa9c434c86dec82249d620045bf892449cc81d31
Time: 2019-12-13
Author: tgsmith61591@gmail.com
File Name: examples/example_simple_fit.py
Class Name:
Method Name:


Project Name: tgsmith61591/pmdarima
Commit Name: fa9c434c86dec82249d620045bf892449cc81d31
Time: 2019-12-13
Author: tgsmith61591@gmail.com
File Name: examples/arima/example_add_new_samples.py
Class Name:
Method Name:


Project Name: tgsmith61591/pmdarima
Commit Name: fa9c434c86dec82249d620045bf892449cc81d31
Time: 2019-12-13
Author: tgsmith61591@gmail.com
File Name: examples/arima/example_persisting_a_model.py
Class Name:
Method Name:


Project Name: tgsmith61591/pmdarima
Commit Name: fa9c434c86dec82249d620045bf892449cc81d31
Time: 2019-12-13
Author: tgsmith61591@gmail.com
File Name: examples/example_simple_fit.py
Class Name:
Method Name:


Project Name: tgsmith61591/pmdarima
Commit Name: fa9c434c86dec82249d620045bf892449cc81d31
Time: 2019-12-13
Author: tgsmith61591@gmail.com
File Name: examples/arima/example_auto_arima.py
Class Name:
Method Name:


Project Name: tgsmith61591/pmdarima
Commit Name: fa9c434c86dec82249d620045bf892449cc81d31
Time: 2019-12-13
Author: tgsmith61591@gmail.com
File Name: examples/example_pipeline.py
Class Name:
Method Name: