purge: Detach all Attached Datasets

Description Usage Arguments Author(s) Examples

Description

All attached datasets will be detached. Especially useful after a number of attaces of the same dataset (in interactive mode it happens).

Usage

1
purge(verbose = FALSE)

Arguments

verbose

print final search path list for confirmaton

Author(s)

Andrej Blejec andrej.blejec@nib.si

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
bla <- data.frame(x=1,y=1)
try(print(x))
attach(bla)
attach(bla)
search()
purge()
search()
#
try(x)
attach(bla)
try(x)
purge(verbose=TRUE)
#
rm(bla)

ablejec/amisc documentation built on May 10, 2019, 4:13 a.m.