Skip to content

Commit

Permalink
Add links to issues for table and array mutability traits.
Browse files Browse the repository at this point in the history
  • Loading branch information
rofinn committed Aug 1, 2019
1 parent 40c4a66 commit 5c45db0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,6 @@ julia> Impute.interp(df) |> Impute.locf() |> Impute.nocb()

- Your approach should depend on the properties of you data (e.g., [MCAR, MAR, MNAR](https://en.wikipedia.org/wiki/Missing_data#Types_of_missing_data)).
- In-place calls aren't guaranteedto mutate the original data, but it will try avoid copying if possible.
In the future, it may be possible to detect whether in-place operations are permitted on an array or table using traits:
- https://github.com/JuliaData/Tables.jl/issues/116
- https://github.com/JuliaDiffEq/ArrayInterface.jl/issues/22
3 changes: 3 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,6 @@ Impute.interp(df) |> Impute.locf() |> Impute.nocb()

- Your approach should depend on the properties of you data (e.g., [MCAR, MAR, MNAR](https://en.wikipedia.org/wiki/Missing_data#Types_of_missing_data)).
- In-place calls aren't guaranteedto mutate the original data, but it will try avoid copying if possible.
In the future, it may be possible to detect whether in-place operations are permitted on an array or table using traits:
- https://github.com/JuliaData/Tables.jl/issues/116
- https://github.com/JuliaDiffEq/ArrayInterface.jl/issues/22

0 comments on commit 5c45db0

Please sign in to comment.