PM> Install-Package RProvider+
R Type | F#/.NET Type |
---|---|
character | string or string[] |
complex | System.Numerics.Complex or Complex[] |
integer | int or int[] |
logical | bool or bool[] |
numeric | double or double[] |
list | Call R.list, passing the values as separate arguments |
dataframe | Call R.data_frame, passing column vectors in a dictionary |
R Type | Requested F#/.NET Type |
---|---|
character (when vector is length 1) | string |
character | string[] |
complex (when vector is length 1) | Complex |
complex | Complex[] |
integer (when vector is length 1) | int |
integer | int[] |
logical (when vector is length 1) | bool |
logical | bool[] |
numeric (when vector is length 1) | double |
numeric | double[] |
R Type | F#/.NET Type |
---|---|
character | string[] |
complex | Complex[] |
integer | int[] |
logical | bool[] |
numeric | double[] |