hgd_close {httpgd}R Documentation

Close httpgd device.

Description

This achieves the same effect as grDevices::dev.off(), but will only close the device if it has the httpgd type.

Usage

hgd_close(which = dev.cur(), all = FALSE)

Arguments

which

Which device (ID).

all

Should all running httpgd devices be closed.

Value

Number and name of the new active device (after the specified device has been shut down).

Examples

## Not run: 

hgd()
hgd_browse() # open browser
hist(rnorm(100))
hgd_close() # Equvalent to dev.off()

hgd()
hgd()
hgd()
hgd_close(all = TRUE)

## End(Not run)

[Package httpgd version 2.0.1 Index]