diff --git a/src/abstractdataframe/abstractdataframe.jl b/src/abstractdataframe/abstractdataframe.jl index e8f4e32ed..f549a07e8 100644 --- a/src/abstractdataframe/abstractdataframe.jl +++ b/src/abstractdataframe/abstractdataframe.jl @@ -1151,6 +1151,11 @@ data frames. function instead as it is consistent with other DataFrames.jl functions (as opposed to `filter`). +!!! note + + Due to type stability the `filter(cols => fun, df::AbstractDataFrame; view::Bool=false)` + call is preferred in performance critical applications. + $METADATA_FIXED See also: [`filter!`](@ref) @@ -1281,6 +1286,11 @@ data frames. function instead as it is consistent with other DataFrames.jl functions (as opposed to `filter!`). +!!! note + + Due to type stability the `filter!(cols => fun, df::AbstractDataFrame)` + call is preferred in performance critical applications. + $METADATA_FIXED See also: [`filter`](@ref)