| check_sdk_compatibility | R Documentation |
Check if code is compatible with the current SDK version and suggest migration steps if needed.
check_sdk_compatibility(code_version)
code_version |
Version string the code was written for. |
A list with compatible (logical) and suggestions (character vector).
if (interactive()) {
result <- check_sdk_compatibility("0.8.0")
if (!result$compatible) {
cat("Migration needed:\n")
cat(paste(result$suggestions, collapse = "\n"))
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.