to_sql(self, frame, name, if_exists='fail', index=True, index_label=None, schema=None, chunksize=None, dtype: 'DtypeArg | None' = None, method=None, engine='auto', **engine_kwargs) -> 'int | None'
Name of SQL table.
fail: If table exists, do nothing.
replace: If table exists, drop it, recreate it, and insert data.
append: If table exists, insert data. Create if does not exist.
Write DataFrame index as a column.
Column label for index column(s). If None is given (default) and :None:None:`index`
is True, then the index names are used. A sequence should be given if the DataFrame uses MultiIndex.
Name of SQL schema in database to write to (if database flavor supports this). If specified, this overwrites the default schema of the SQLDatabase object.
If not None, then rows will be written in batches of this size at a time. If None, all rows will be written at once.
Optional specifying the datatype for columns. The SQL type should be a SQLAlchemy type. If all columns are of the same type, one single value can be used.
Controls the SQL insertion clause used:
SQL engine library to use. If 'auto', then the option io.sql.engine
is used. The default io.sql.engine
behavior is 'sqlalchemy'
Any additional kwargs are passed to the engine.
Write records stored in a DataFrame to a SQL database.
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them