Skip to content

Separating

Follwing the tidyverse syntax, the @separate() macro in TidierData.jl separates a single column into multiple columns. This is particularly useful for splitting a column containing delimited values into individual columns.

using TidierData

df = DataFrame(a = ["1-1", "2-2", "3-3-3"]);

@separate¤

Separate the "a" column into "b", "c", and "d" columns based on the dash delimiter

@chain df begin
    @separate(a, (b, c, d), "-")
end
3×3 DataFrame
Rowbcd
SubStrin…SubStrin…SubStrin…?
111missing
222missing
3333

The into columns can also be designated as follows:

new_names = ["x$(i)" for i in 1:3]; # or new_names = ["b", "c", "d"], or new_names = [:b, :c, :d]

@separate(df, a, !!new_names, "-")
3×3 DataFrame
Rowx1x2x3
SubStrin…SubStrin…SubStrin…?
111missing
222missing
3333

@unite¤

The @unite macro brings together multiple columns into one, separate the characters by a user specified delimiter Here, the @unite macro combines the "b", "c", and "d" columns columns into a single new "new_col" column using the "/" delimiter

df = DataFrame(
       b = ["1", "2", "3"],
       c = ["1", "2", "3"],
       d = [missing, missing, "3"]);

@chain df begin
    @unite(new_col, (b, c, d), "/")
end
3×4 DataFrame
Rowbcdnew_col
StringStringString?String
111missing1/1
222missing2/2
33333/3/3

@separate_rows¤

Separate rows into multiple rows based on a chosen delimiter.

df = DataFrame(
       a = 1:3,
       b = ["a", "aa;bb;cc", "dd;ee"],
       c = ["1", "2;3;4", "5;6"],
       d = ["7", "8;9;10", "11;12"],
       e = ["11", "22;33;44", "55;66"]);

@separate_rows(df, b:e, ";")
6×5 DataFrame
Rowabcde
Int64SubStrin…SubStrin…SubStrin…SubStrin…
11a1711
22aa2822
32bb3933
42cc41044
53dd51155
63ee61266

This page was generated using Literate.jl.