Wie werde ich sie los?
Code: Select all
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)

Mobile version