saveGraphVisstat {visStatistics}R Documentation

Saves Graphical Output

Description

Closes all graphical devices with dev.off() and saves the output only if both fileName and type are provided.

Usage

saveGraphVisstat(
  fileName = NULL,
  type = NULL,
  fileDirectory = getwd(),
  oldfile = NULL
)

Arguments

fileName

name of file to be created in directory fileDirectory without file extension ".type".

type

see Cairo().

fileDirectory

path of directory, where graphic is stored. Default setting current working directory.

oldfile

old file of same name to be overwritten

Value

NULL, if no type or fileName is provided, TRUE if graph is created

Examples

# very simple KDE (adapted from example in \code{Cairo()})
openGraphCairo(type = "png", fileDirectory=tempdir())  
plot(rnorm(4000),rnorm(4000),col="#ff000018",pch=19,cex=2) 
#save file "norm.png" in directory specified in \code{fileDirectory} 
saveGraphVisstat("norm",type = "png",fileDirectory=tempdir())
file.remove(file.path(tempdir(),"norm.png"))  # remove file "norm.png" from \code{fileDirectory}.


[Package visStatistics version 0.1.1 Index]