Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

can I use this project in time series prediction ? #52

Closed
mathcbc opened this issue Mar 10, 2017 · 4 comments
Closed

can I use this project in time series prediction ? #52

mathcbc opened this issue Mar 10, 2017 · 4 comments

Comments

@mathcbc
Copy link

mathcbc commented Mar 10, 2017

I want to make predictions of time series. Can this project process time series data ?

@dswah
Copy link
Owner

dswah commented Mar 10, 2017

@mathcbc
yes, of course, but it will only be capable of AR (auto-regressive) models, which is a reasonable place to start.

@dswah
Copy link
Owner

dswah commented Mar 10, 2017

@mathcbc however, the package is still very immature. this is why i have no installation docs.
for example extrapolation is currently broken.

i would ask you to wait a few days before using the code.

@mathcbc
Copy link
Author

mathcbc commented Mar 11, 2017 via email

@dswah
Copy link
Owner

dswah commented Mar 11, 2017

Yes, the algorithm learns a smoother on each feature.

What i mean is that you may want to choose the number of AR lags a-priori and structure your feature vector so that each lag is a feature. This way the GAM will learn a smoother for each lag.

In effect this is a sort of non-linear AR model:

x_t = f_1(x_{t-1}) + f_2(x_{t-2}) + ... + f_p(x_{t-p}) + c

just a thought. :)

@dswah dswah closed this as completed Mar 20, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants