<@U16CM33AB> I'm using krangl and wondering if the...
# datascience
a
@holgerbrandl I'm using krangl and wondering if there is a better way to alter a single column (keeping the rest as is). Currently I use
transmute
, but it seems I have to pass all unchanged columns as well to get them back.
y
DataFrames are immutable from what I've been told. So when you call
transmute
, you're creating a new instance of the DataFrame with the column specific instructions. Can I see a snippet of your code to see what you're doing?