clear {schoRsch}R Documentation

Clear Global Workspace

Description

The global workspace is cleared; clear is a shortcut for the usual rm(list=ls()).

Usage

clear()

Author(s)

Roland Pfister, Markus Janczyk

See Also

rm; ls;

Examples

## Declare variables
a <- 1
b <- "abc"
ls()

## Clear workspace
clear()
ls()

[Package schoRsch version 1.10 Index]