Package de.fzi.power.regression.r.io
Interface RRegressionConnection
-
- All Superinterfaces:
IRConnection
- All Known Implementing Classes:
RRegressionConnectionImpl
public interface RRegressionConnection extends IRConnection
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
assign(String name, int[] array)
Stores an array in a R variable.void
assign(String name, String[] array)
Stores an array in a R variable.void
checkPackageAvailability(String packageName)
Checks the availability of the package with the given name in R.-
Methods inherited from interface de.fzi.power.regression.r.io.IRConnection
assign, execute
-
-
-
-
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.
-
-