Open davidanthoff opened 5 years ago
For example, select all Float64 columns.
Float64
One option might be df |> @select(<:Float64)... We should also take a look how this is done in dplyr.
df |> @select(<:Float64)
For the example above, should the syntax be df |> @select(::Float64)? Because <:Float64 already means a subtype of Float64, while :Float64 confounds with a column name selection.
df |> @select(::Float64)
<:Float64
:Float64
For example, select all
Float64
columns.One option might be
df |> @select(<:Float64)
... We should also take a look how this is done in dplyr.