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

    Interface RShellExecutionOptions

    interface RShellExecutionOptions {
        commandLineOptions: readonly string[];
        cwd: string;
        env: ProcessEnv | undefined;
        eol: string;
        homeLibPath: string | undefined;
        pathToRExecutable: string;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

    Hierarchy-Diagram

    UML class diagram of RShellExecutionOptions
    Index

    Properties

    commandLineOptions: readonly string[]

    Command line options to use when starting the R session.

    cwd: string

    The current working directory of the R session.

    env: ProcessEnv | undefined

    The environment variables available in the R session.

    eol: string

    The character to use to mark the end of a line. Is probably always \n (even on windows).

    homeLibPath: string | undefined

    The path to the library directory, use undefined to let R figure that out for itself

    pathToRExecutable: string

    The path to the R executable, can be only the executable if it is to be found on the PATH.