Interface ReadCsvOptions

interface ReadCsvOptions {
    chunkSize: number;
    columns: string[];
    commentChar: string;
    dtypes: Record<string, DataType>;
    encoding: "utf8" | "utf8-lossy";
    endRows: number;
    eolChar: string;
    hasHeader: boolean;
    ignoreErrors: boolean;
    inferSchemaLength: null | number;
    lowMemory: boolean;
    missingIsNull: boolean;
    nRows: number;
    nullValues: string | string[] | Record<string, string>;
    numThreads: number;
    projection: number;
    quoteChar: string;
    raiseIfEmpty: boolean;
    rechunk: boolean;
    rowCount: any;
    sampleSize: number;
    schema: Record<string, DataType>;
    sep: string;
    skipRows: number;
    skipRowsAfterHeader: number;
    startRows: number;
    truncateRaggedLines: boolean;
    tryParseDates: boolean;
}

Properties

chunkSize: number
columns: string[]
commentChar: string
dtypes: Record<string, DataType>
encoding: "utf8" | "utf8-lossy"
endRows: number
eolChar: string
hasHeader: boolean
ignoreErrors: boolean
inferSchemaLength: null | number
lowMemory: boolean
missingIsNull: boolean
nRows: number
nullValues: string | string[] | Record<string, string>
numThreads: number
projection: number
quoteChar: string
raiseIfEmpty: boolean
rechunk: boolean
rowCount: any
sampleSize: number
schema: Record<string, DataType>
sep: string
skipRows: number
skipRowsAfterHeader: number
startRows: number
truncateRaggedLines: boolean
tryParseDates: boolean

Generated using TypeDoc