nodejs-polars
    Preparing search index...

    Interface ScanCsvOptions

    interface ScanCsvOptions {
        cache: boolean;
        cloudOptions: Record<string, string>;
        commentPrefix: string;
        decimalComma: boolean;
        encoding: string;
        eolChar: string;
        glob: boolean;
        hasHeader: boolean;
        ignoreErrors: boolean;
        includeFilePaths: string;
        inferSchemaLength: number | null;
        lowMemory: boolean;
        missingColumns: "raise" | "insert";
        missingUtf8IsEmptyString: boolean;
        nRows: number;
        nThreads: number;
        nullValues: string | string[] | Record<string, string>;
        parseDates: boolean;
        quoteChar: string;
        raiseIfEmpty: boolean;
        rechunk: boolean;
        rowIndexName: string;
        rowIndexOffset: number;
        schema: Record<string, DataType>;
        sep: string;
        skipLines: number;
        skipRows: number;
        skipRowsAfterHeader: number;
        truncateRaggedLines: boolean;
    }
    Index
    cache: boolean
    cloudOptions: Record<string, string>
    commentPrefix: string
    decimalComma: boolean
    encoding: string
    eolChar: string
    glob: boolean
    hasHeader: boolean
    ignoreErrors: boolean
    includeFilePaths: string
    inferSchemaLength: number | null
    lowMemory: boolean
    missingColumns: "raise" | "insert"
    missingUtf8IsEmptyString: boolean
    nRows: number
    nThreads: number
    nullValues: string | string[] | Record<string, string>
    parseDates: boolean
    quoteChar: string
    raiseIfEmpty: boolean
    rechunk: boolean
    rowIndexName: string
    rowIndexOffset: number
    schema: Record<string, DataType>
    sep: string
    skipLines: number
    skipRows: number
    skipRowsAfterHeader: number
    truncateRaggedLines: boolean