@eagleoutice/flowr - v2.10.7
    Preparing search index...

    A linting result for a single linting rule match.

    interface DataFrameAccessValidationResult {
        access: string;
        accessed: string | number;
        certainty: LintingResultCertainty;
        involvedId: NodeId | NodeId[] | undefined;
        loc: [
            startLine: number,
            startColumn: number,
            endLine: number,
            endColumn: number,
            f?: string,
        ];
        operand?: string;
        quickFix?: LintQuickFix[];
        type: "column"
        | "row";
    }

    Hierarchy (View Summary)

    Hierarchy-Diagram

    UML class diagram of DataFrameAccessValidationResult
    Index

    Properties

    access: string

    The name of the function/operation used for the access (e.g. $, [, [[, but also filter, select, ...)

    accessed: string | number

    The name or index of the column or row being accessed in the data frame

    The certainty of the linting result.

    involvedId: NodeId | NodeId[] | undefined

    The node ID or IDs involved in this linting result, if applicable.

    loc: [
        startLine: number,
        startColumn: number,
        endLine: number,
        endColumn: number,
        f?: string,
    ]

    The source location where this linting result occurs

    operand?: string

    The variable/symbol name of the accessed data frame operand (undefined if operand is no symbol)

    quickFix?: LintQuickFix[]

    If available, what to do to fix the linting result.

    type: "column" | "row"

    The type of the data frame access ("column" or "row")