I would like to convert
df = DataFrame(A=['x','y','z','t'], B=[1,2,3,4])
4×2 DataFrame
Row │ A B
│ Char Int64
─────┼─────────────
1 │ x 1
2 │ y 2
3 │ z 3
4 │ t 4
to
8×1 DataFrame
Row │ F1 F2 F3 F4 F5 F6 F7 F8
│ Char Int64 Char Int64 Char Int64
─────┼─────────────────────────────────────────────────────────────
1 │ x 1 y 2 z 3 t 4
Is there a simple way to apply this transformation?