Interface ScanCsvOptions

interface ScanCsvOptions {
    cache: boolean;
    commentChar: string;
    encoding: string;
    eolChar: string;
    hasHeader: boolean;
    ignoreErrors: boolean;
    inferSchemaLength: null | number;
    lowMemory: boolean;
    missingUtf8IsEmptyString: boolean;
    nRows: number;
    nullValues: string | string[] | Record<string, string>;
    parseDates: boolean;
    quoteChar: string;
    raiseIfEmpty: boolean;
    rechunk: boolean;
    schema: Record<string, DataType>;
    sep: string;
    skipRows: number;
    skipRowsAfterHeader: number;
    truncateRaggedLines: boolean;
}

Properties

cache: boolean
commentChar: string
encoding: string
eolChar: string
hasHeader: boolean
ignoreErrors: boolean
inferSchemaLength: null | number
lowMemory: boolean
missingUtf8IsEmptyString: boolean
nRows: number
nullValues: string | string[] | Record<string, string>
parseDates: boolean
quoteChar: string
raiseIfEmpty: boolean
rechunk: boolean
schema: Record<string, DataType>
sep: string
skipRows: number
skipRowsAfterHeader: number
truncateRaggedLines: boolean