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

    Interface RShellEngineConfig

    interface RShellEngineConfig {
        pipeBind?: boolean;
        rPath?: string;
        type: "r-shell";
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index
    pipeBind?: boolean

    Whether to enable R's experimental pipe-bind operator => (x |> name => body) by setting _R_USE_PIPEBIND_ for the R session. R itself keeps this off by default, as the operator is experimental and has never shipped in a release version of R; off by default here as well.

    new FlowrAnalyzerBuilder().setEngine('r-shell').configure('engine.r-shell.pipeBind', true)
    
    rPath?: string

    The path to the R executable to use; defaults to DEFAULT_R_PATH.

    type: "r-shell"