Created
July 29, 2022 12:00
-
-
Save lucifermorningstar1305/02ea15f550e8e982894eb3882371c0a6 to your computer and use it in GitHub Desktop.
To transform a particular column of a julia dataframe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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