Skip to content

Commit

Permalink
docs(python): Clarify documentation for schema in read_csv functi…
Browse files Browse the repository at this point in the history
  • Loading branch information
bradfordlynch authored Sep 22, 2024
1 parent b618734 commit f08885c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion py-polars/polars/io/csv/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ def read_csv(
schema
Provide the schema. This means that polars doesn't do schema inference.
This argument expects the complete schema, whereas `schema_overrides` can be
used to partially overwrite a schema.
used to partially overwrite a schema. Note that the order of the columns in
the provided `schema` must match the order of the columns in the CSV being read.
schema_overrides
Overwrite dtypes for specific or all columns during schema inference.
null_values
Expand Down

0 comments on commit f08885c

Please sign in to comment.