pub fn rows_to_schema_supertypes(
rows: &[Row<'_>],
infer_schema_length: Option<usize>,
) -> Result<Schema<DataType>, PolarsError>
Expand description
Infer the schema of rows by determining the supertype of the values.
Field names are set as column_0
, column_1
, and so on.