write.gra: Saving Maps in Graph Format

View source: R/write.gra.R

write.graR Documentation

Saving Maps in Graph Format

Description

Writes the information of a map object to a file (in graph format).

Usage

write.gra(map, file, replace = FALSE)

Arguments

map

map object ot be saved (should be in graph format, see bnd2gra for the conversion of boundary format to graph format).

file

name of the file to write to

replace

should an existing file be overwritten with the new version?

Author(s)

Thomas Kneib, Felix Heinzl.

References

BayesX Reference Manual. Available at https://www.uni-goettingen.de/de/bayesx/550513.html.

See Also

read.gra, read.bnd, write.bnd.

Examples

data("FantasyBnd")
tfile <- tempfile()
write.gra(bnd2gra(FantasyBnd), file = tfile)
cat(readLines(tfile), sep = "\n")
unlink(tfile)

R2BayesX documentation built on Oct. 20, 2023, 9:11 a.m.