Map function do not modify the dataframe as expected ?
Minimal Reproducible Example:
using DataFrames, TableTransforms
A = DataFrame(a = 1)
A` is a DataFrame with one column: :a = 1
Using pipeline with Map/transform
B = A |> Map(:a => sum => :b)
Result:
B will be a new DataFrame with only one column :b, which equals 2 and A is the same.