-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Move math docs out of HelpDB, more examples, fix typos #17791
Conversation
190c43c
to
34c839f
Compare
0.815096 0.36539 0.949436 | ||
0.682085 0.179069 0.198193 | ||
``` | ||
""" | ||
function hcat{T}(V::Vector{T}...) |
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.
this is only for vectors, the docstring is more general
Should all the recommendations about DataArrays be changed to recommend NullableArrays now? |
|
Let's change that after DataFrames changes to use NullableArrays. As it stands, we're in a weird intermediate state in which there's no clear standard. |
Found a series of typos in `cov` and friends. Added more notes about `NaN` and Julia. Made the function signatures reflect what's actually in the code. More examples for quite a few functions.
Removed calls to `rand` in doctests. Made examples better. Cleaned up function signatures.
* Move math docs out of HelpDB, more examples, fix typos Found a series of typos in `cov` and friends. Added more notes about `NaN` and Julia. Made the function signatures reflect what's actually in the code. More examples for quite a few functions. * Move quadgk docs out, update formatting * Moved special functions out of HelpDB, insert some links * Updated docs for some array ops as well * Updated in response to feedback Removed calls to `rand` in doctests. Made examples better. Cleaned up function signatures. (cherry picked from commit 2d24eda)
* Move math docs out of HelpDB, more examples, fix typos Found a series of typos in `cov` and friends. Added more notes about `NaN` and Julia. Made the function signatures reflect what's actually in the code. More examples for quite a few functions. * Move quadgk docs out, update formatting * Moved special functions out of HelpDB, insert some links * Updated docs for some array ops as well * Updated in response to feedback Removed calls to `rand` in doctests. Made examples better. Cleaned up function signatures.
Found a series of typos in
cov
and friends. Added more notesabout
NaN
and Julia. Made the function signatures reflectwhat's actually in the code. More examples for quite a few
functions.