在 Polars / pandas / PyArrow 中,我可以从字典中实例化一个对象,例如
In [12]: pl.DataFrame({'a': [1,2,3], 'b': [4,5,6]})
Out[12]:
shape: (3, 2)
┌─────┬─────┐
│ a ┆ b │
│ --- ┆ --- │
│ i64 ┆ i64 │
╞═════╪═════╡
│ 1 ┆ 4 │
│ 2 ┆ 5 │
│ 3 ┆ 6 │
└─────┴─────┘
有没有办法在 DuckDB 中做到这一点,而无需通过 pandas/pyarrow/等?