From 5c45db024c4d0f52ed6cdd6c789947d141dd3b3e Mon Sep 17 00:00:00 2001 From: rofinn Date: Thu, 1 Aug 2019 14:39:51 -0500 Subject: [PATCH] Add links to issues for table and array mutability traits. --- README.md | 3 +++ docs/src/index.md | 3 +++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index 414ddcf..c744373 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/src/index.md b/docs/src/index.md index 07bc71f..a2ddf2e 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -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