Как от него избавиться?
Код: Выделить всё
from pyarrow import Table
import pandas as pd
df_empty = pd.DataFrame(columns=["a", "b", "c",])
df_empty = df_empty.astype(
{"a": "int64", "b": "datetime64[ns]", "c": "int64"}
)
df = Table.from_pandas(df_empty)

Подробнее здесь: https://stackoverflow.com/questions/781 ... ex-level-0
Мобильная версия