DataFrame with mix types

How can I create a dataframe with only one row composed by a Vector and a Int . When I do DataFrame(a=[1,2,3],b=1) the result dataFrame is a 3x2 DataFrame of Ints.

julia> DataFrame(:a => [ [1,2,3] ],:b => 1)
1Γ—2 DataFrame
 Row β”‚ a          b
     β”‚ Array…     Int64
─────┼──────────────────
   1 β”‚ [1, 2, 3]      1
1 Like