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

Improve noteworthy differences from R on ismissing #29332

Merged
merged 1 commit into from
Sep 24, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion doc/src/manual/noteworthy-differences.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ For users coming to Julia from R, these are some noteworthy differences:
* Julia does not support the `NULL` type. The closest equivalent is [`nothing`](@ref), but it
behaves like a scalar value rather than like a list. Use `x === nothing` instead of `is.null(x)`.
* In Julia, missing values are represented by the [`missing`](@ref) object rather than by `NA`.
Use [`ismissing(x)`](@ref) instead of `isna(x)`. The [`skipmissing`](@ref) function is generally
Use [`ismissing(x)`](@ref) (or `ismissing.(x)` for element-wise operation on vectors) instead of
`is.na(x)`. The [`skipmissing`](@ref) function is generally
used instead of `na.rm=TRUE` (though in some particular cases functions take a `skipmissing`
argument).
* Julia lacks the equivalent of R's `assign` or `get`.
Expand Down