remove_endpoint | R Documentation |
Remove an endpoint from a WORCS project.
remove_endpoint(filename = NULL, worcs_directory = ".", verbose = TRUE, ...)
filename |
Character, indicating the file to be removed from the endpoints. Default: NULL. |
worcs_directory |
Character, indicating the WORCS project directory to which to save data. The default value "." points to the current directory. Default: '.' |
verbose |
Logical. Whether or not to print status messages to the console. Default: TRUE |
... |
Additional arguments. |
None, prints to the console.
add_endpoint
snapshot_endpoints
if(requireNamespace("withr", quietly = TRUE)){
withr::with_tempdir({
file.create(".worcs")
write.csv(iris, "iris.csv")
add_endpoint("iris.csv")
list_endpoints()
remove_endpoint("iris.csv")
list_endpoints()
})
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.