a=UInt8(1)
b=UInt8(2)
DataFrame([a;b])
A longer example:
using DataFrames, Parquet
# Download the parquet file
download("https://github.com/vega/vega-datasets/raw/refs/heads/main/data/flights-3m.parquet", "flights-3m.parquet")
# Read the parquet file into a DataFrame
df = DataFrame(Parquet.read("flights-3m.parquet"))
ArgumentError: 'Vector{UInt8}' iterates 'UInt8' values, which doesn't satisfy the Tables.jl AbstractRow interface