Skip to content

Instantly share code, notes, and snippets.

@lucifermorningstar1305
Created July 29, 2022 12:00
Show Gist options
  • Save lucifermorningstar1305/02ea15f550e8e982894eb3882371c0a6 to your computer and use it in GitHub Desktop.
Save lucifermorningstar1305/02ea15f550e8e982894eb3882371c0a6 to your computer and use it in GitHub Desktop.
To transform a particular column of a julia dataframe
df = @chain df begin
DataFrames.transform(:Message => ByRow(x -> StringDocument(x)) => :Message2)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment