This interface can be used for providing new convertors that can convert custom .NET data types to R values. The converter is used whenever the user calls an R function (such as `R.foo(...)`) with an arguments that is of type `TInType`.
Instance member | Description |
Full Usage:
this.Convert(arg1, arg2)
Parameters:
REngine
arg1 : 'TInType
Returns: SymbolicExpression
Modifiers: abstract |
The method is called when the user calls any of the provided R
functions with a value of type `'TInType` as an argument.
## Example
To use this interface, you need to write a plugin (`YourPlugin.Plugin.dll`)
that exports an implementation of this interface using MEF. The method
`Convert` of the interface is called with the value of `'TInType` and should
return an R symbolic expression.
[
|