Efficient Time-Series Using Python’s Pmdarima Library

By Medium - 2021-01-05

Description

Demonstrating the efficiency of pmdarima’s auto_arima() function compared to implementing a traditional ARIMA model.

Summary

  • Efficient Time-Series Analysis Using Python’s Pmdarima Library What is Time-Series Analysis?
  • A trend that has no set repetition over a certain time period.
  • Next, I looked at our ACF/PACF plots using the differenced data to visualize the lags that will likely be influential when modeling the number of passengers.
  • While the traditional ARIMA implementation requires one to perform differencing and plotting ACF and PACF plots, the Auto ARIMA model using pmdarima’s auto_arima() function is more efficient in determining the optimal p,d,q values.

 

Topics

  1. Backend (0.22)
  2. Database (0.14)
  3. NLP (0.11)

Similar Articles

LSTM for time series prediction

By KDnuggets - 2021-01-23

Learn how to develop a LSTM neural network with PyTorch on trading data to predict future prices by mimicking actual values of the time series data.

Creating synthetic time series data

By Medium - 2021-02-22

We synthetic versions of a time-series dataset, visualize and analyze the results, and discuss several use cases for synthetic time series data.

30 Most Asked Machine Learning Questions Answered

By Medium - 2021-03-18

Machine Learning is the path to a better and advanced future. A Machine Learning Developer is the most demanding job in 2021 and it is going to increase by 20–30% in the upcoming 3–5 years. Machine…