nodejs-polars
    Preparing search index...

    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: RowCount;
        schema: Record<string, DataType>;
        sep: string;
        skipRows: number;
        skipRowsAfterHeader: number;
        startRows: number;
        truncateRaggedLines: boolean;
        tryParseDates: boolean;
    }
    Index

    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: RowCount
    schema: Record<string, DataType>
    sep: string
    skipRows: number
    skipRowsAfterHeader: number
    startRows: number
    truncateRaggedLines: boolean
    tryParseDates: boolean