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

BUG: Incorrect weight calculationfor Parzen/Gallant #170

Closed
bashtage opened this issue Sep 28, 2018 · 0 comments · Fixed by #171
Closed

BUG: Incorrect weight calculationfor Parzen/Gallant #170

bashtage opened this issue Sep 28, 2018 · 0 comments · Fixed by #171

Comments

@bashtage
Copy link
Owner

Wrongly placed parentheses in parzen weights. Was

w[z > 0.5] = 2 * (1 - z[z > 0.5] ** 3)

should be

w[z > 0.5] = 2 * (1 - z[z > 0.5]) ** 3

From #168

bashtage added a commit that referenced this issue Sep 28, 2018
Fix high-lag parzen weights

closes #170
closes #168
bashtage added a commit that referenced this issue Sep 28, 2018
Fix high-lag parzen weights

closes #170
closes #168
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

Successfully merging a pull request may close this issue.

1 participant