Interface RRegressionConnection

    • Method Detail

      • assign

        void assign​(String name,
                    int[] array)
        Stores an array in a R variable.
        Parameters:
        name - Name of the R variable in which the array is stored.
        array - Array to store in an R variable.
      • assign

        void assign​(String name,
                    String[] array)
        Stores an array in a R variable.
        Parameters:
        name - Name of the R variable in which the array is stored.
        array - Array to store in an R variable.
      • checkPackageAvailability

        void checkPackageAvailability​(String packageName)
        Checks the availability of the package with the given name in R. If it is not available an error message is logged and displayed.
        Parameters:
        packageName - The name of the R package.