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

Indexing error in multimodel/process_data.py #5

Open
chrisfischer opened this issue Jul 19, 2017 · 0 comments
Open

Indexing error in multimodel/process_data.py #5

chrisfischer opened this issue Jul 19, 2017 · 0 comments

Comments

@chrisfischer
Copy link

chrisfischer commented Jul 19, 2017

On line 170, you have

y_i = np.std(data_chng_train[i:i+window+forecast][3])

However, this would just pull the 3rd row out of the group of 30.
I think what you meant to write was:

y_i = np.std(data_chng_train[i:i+window+forecast, 3])

But I still don't really understand what you are trying to do with np.std()

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

1 participant