You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The design of [`transform!`](@ref) is heavily inspired from the eponym function from [`DataFrame.jl`](https://dataframes.juliadata.org/stable/), with little tweaks for MTGs.
45
+
The design of [`transform!`](@ref) is heavily inspired from the eponym function from tabular workflows (notably [`DataFrames.jl`](https://dataframes.juliadata.org/stable/)), with little tweaks for MTGs.
46
46
47
47
You can see the newly-computed attributes using descendants like so:
48
48
49
49
```@example usepkg
50
50
descendants(mtg, :length_mm)
51
51
```
52
52
53
-
Or by transforming your MTG into a DataFrame:
53
+
Or by getting a tabular view of your MTG:
54
54
55
55
```@example usepkg
56
-
DataFrame(mtg, :length_mm)
56
+
mtg_table(mtg)
57
+
```
58
+
59
+
Or directly transforming the MTG into a DataFrame:
0 commit comments