Example:
from rows.fields import detect_schema, load_schema
table1 = rows.import_from_csv('filename.csv')
schema = detect_schema(table1)
# after
table = rows.import_from_csv('filename.csv', schema=schema)
# or
table = rows.import_from_csv('filename.csv', schema=load_schema('schema.csv'))
Related to #237.
Tasks:
Example:
Related to #237.
Tasks:
detect_schemafunctionload_schemafunction--schema=filename.csvschemaparameter tocreate_table