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

[DOCS] Documentation #87

Open
pst2154 opened this issue Dec 3, 2021 · 0 comments
Open

[DOCS] Documentation #87

pst2154 opened this issue Dec 3, 2021 · 0 comments
Labels
documentation Improvements or additions to documentation

Comments

@pst2154
Copy link

pst2154 commented Dec 3, 2021

In the API Reference, you are missing a parentheses

`from collections import namedtuple

Transform = namedtuple('Transform', ['func', 'inv_func']
transform = Transform(func=numpy.exp, inv_func=numpy.log)

ht = HTSRegressor(transform=transform, ...)`

should be

`from collections import namedtuple

Transform = namedtuple('Transform', ['func', 'inv_func'])
transform = Transform(func=numpy.exp, inv_func=numpy.log)

ht = HTSRegressor(transform=transform, ...)`

@pst2154 pst2154 added the documentation Improvements or additions to documentation label Dec 3, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

1 participant