table_from_dataframe
table_from_dataframe(name, df)
Creates a table from a pandas DataFrame. Drops any existing table with the same name. Column types are inferred: integer → INTEGER, float → REAL, other → TEXT.
Parameters
- name : str
- Name to assign to the new table. Any existing table with this name is dropped first.
- df : pandas.DataFrame
- Source data used to populate the new table. Column dtypes determine the SQLite column types: integer columns become
INTEGER, float columns becomeREAL, and all others becomeTEXT.
Returns
- Table
- Table wrapper for the newly created table.