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

    Interface RShellInformation

    interface RShellInformation {
        name: "r-shell";
        rVersion(): Promise<string>;
        sendCommandWithOutput(
            command: string,
            addonConfig?: Partial<OutputCollectorConfiguration>,
        ): Promise<string[]>;
    }

    Hierarchy (View Summary)

    Hierarchy-Diagram

    UML class diagram of RShellInformation
    Index

    Properties

    name: "r-shell"

    Methods

    • Sends a command to the underlying R engine and collects the output.

      Parameters

      • command: string

        The command to send to the R engine.

      • OptionaladdonConfig: Partial<OutputCollectorConfiguration>

        Additional configuration for the output collector.

      Returns Promise<string[]>