-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add initial docs #37
Add initial docs #37
Conversation
Codecov Report
@@ Coverage Diff @@
## main #37 +/- ##
==========================================
- Coverage 95.31% 94.59% -0.72%
==========================================
Files 9 9
Lines 128 111 -17
==========================================
- Hits 122 105 -17
Misses 6 6
Continue to review full report at Codecov.
|
- Separate out different topics in sections, with more examples - Make `cols` example clearer - Add section on transform-specific keyword arguments - Put each sentence on a new line
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
docs/src/transforms.md
Outdated
Without specifying optional arguments, a `Transform` is applied to every element of an `AbstractArray` and in an element-wise fashion: | ||
|
||
```jldoctest transforms | ||
julia> M = [2 4; 1 5; 3 6]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might want to change this to a float array to avoid failing the 32 bit tests
docs/src/transforms.md
Outdated
Some `Transform` subtypes have restrictions on how they can be applied once constructed. | ||
For instance, `MeanStdScaling` stores the mean and standard deviation of some data for specified dimensions or column names. | ||
So `MeanStdScaling` should only be applied to the same data type and for the same dimensions or subset of column names specified in construction. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll address this (and any other things that conflict) when I finish #42
Closes #36
Includes pages for an introduction, the API, overview of how
Transform
s work, and a longer example.Note the built docs can be previewed by clicking the "details" link next to the documenter/deploy check.