From 47bdb7ec4d1599f07e57fb839ea80592761ffe4a Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Tue, 25 Jun 2024 00:04:55 +0200 Subject: [PATCH] Driveby doc --- py-polars/polars/dataframe/frame.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/py-polars/polars/dataframe/frame.py b/py-polars/polars/dataframe/frame.py index be09a268d765e..f99c233e953e0 100644 --- a/py-polars/polars/dataframe/frame.py +++ b/py-polars/polars/dataframe/frame.py @@ -654,7 +654,6 @@ def style(self) -> GT: Format measure_b values to two decimal places: >>> df.style.fmt_number("measure_b", decimals=2) # doctest: +SKIP - """ if not _GREAT_TABLES_AVAILABLE: msg = "great_tables is required for `.style`" @@ -3601,7 +3600,7 @@ def write_database( Additional options to pass to the engine's associated insert method: * "sqlalchemy" - currently inserts using Pandas' `to_sql` method, though - this will eventually be phased out in favour of a native solution. + this will eventually be phased out in favor of a native solution. * "adbc" - inserts using the ADBC cursor's `adbc_ingest` method. Examples