api example
See original GitHub issuecould you give some example about ARIMAX model’s predict function? I can not find usage in your docs.
I use it like this:
model = pf.ARIMAX(data=group,formula='passengerCount~1',ar=1,ma=1) x = model.fit() pre = model.predict(18) print(pre)
got error: Error evaluating factor: TypeError: ‘NoneType’ object is not subscriptable passengerCount~1
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
5 Examples of APIs We Use in Our Everyday Lives
5 Examples of APIs We Use in Our Everyday Lives · 1. Weather Snippets · 2. Log-in Using XYZ · 3. Pay with...
Read more >7 Examples of APIs in Use Today | Trio Developers
7 Examples of APIs · 1. Twitter Bots · 2. Log-In Using XYZ · 3. Weather Snippets · 4. Pay with PayPal ·...
Read more >What Is an API (Application Programming Interface ... - Talend
Application programming interfaces (API) are building blocks that facilitate the transfer of data between people and systems.
Read more >What is an API? Full Form, Meaning, Definition, Types ...
Examples of web API: · Google Maps API's allow developers to embed Google Maps on webpages by using a JavaScript or Flash interface....
Read more >What is an API? (Application Programming Interface) - MuleSoft
API is the acronym for Application Programming Interface, which is a software ... example – your phone's data is never fully exposed to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hi zhouhoo - sorry for late response; I think it’s best if you google this question. For the library itself, you just need to make sure that the dataframe that you give for oos_data has the same column names. The exogenous variables here will reflect your assumptions about their future values. Thanks! Ross
thanks for your advice. You help me out~ to be honest, I don’t know what exogenous variables means, I’m new to here. could you give me an example DataFrame for oos_data of my data?