Remove a DataSHIELD workspace from the remote data repository. Ignore if no such workspace exists.

dsRmWorkspace(conn, name)

Arguments

conn

An object that inherits from DSConnection-class.

name

Name of the workspace

Examples

if (FALSE) {
con <- dsConnect(DSOpal::Opal(), "server1",
  username = "dsuser", password = "password", url = "https://opal-demo.obiba.org")
dsSaveWorkspace(con, "foo")
dsListWorkspaces(con)
dsRmWorkspace(con, "foo")
dsListWorkspaces(con)
dsDisconnect(con)
}