Description Usage Arguments Examples
Turn on/off the conversion of advanced data types with R.NET. This will turn off the conversion of classes such as dictionaries into R lists, as these are not bidirectional and you may want to see and manipulate external pointers to dictionaries in some circumstances.
1 | setConvertAdvancedTypes(enable = TRUE)
|
enable |
if true enable, otherwise disable |
1 2 3 4 5 6 7 8 | ## Not run:
library(rClr)
cTypename <- "Rclr.TestCases"
clrCallStatic(cTypename, "CreateStringDictionary")
setConvertAdvancedTypes(FALSE)
clrCallStatic(cTypename, "CreateStringDictionary")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.