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

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[]>