After removal, the data identified by the symbol will not be accessible in the DataSHIELD R session on the server side.

dsRmSymbol(conn, symbol)

Arguments

conn

An object that inherits from DSConnection-class.

symbol

Name of the R symbol.

Examples

if (FALSE) {
con <- dsConnect(DSOpal::Opal(), "server1",
  username = "dsuser", password = "password", url = "https://opal-demo.obiba.org")
dsAssignTable(con, "D", "test.CNSIM")
dsRmSymbol(con, "D")
dsDisconnect(con)
}