
This function exports graphics settings for a specified Xpose data object to a file.
export.graph.par(object)xpose.write(object,
file = "xpose.ini")
An xpose.data
object.
The file to contain exported Xpose settings.
Null.
This function exports the graphics settings (contents of object@Prefs@Graph.prefs)
for a given xpose.data
object to a file, typically 'xpose.ini'. It is
a wrapper for xpose.write
. Note that the file format is not the
same as is used in import.variable.definitions
and export.variable.definitions
.
## xpdb5 is an Xpose data object
## We expect to find the required NONMEM run and table files for run
## 5 in the current working directory
xpdb5 <- xpose.data(5)
## For a filename prompt
export.graph.par(xpdb5)
## Command-line driven
xpose.write(xpdb5, "c:/XposeSettings/mytheme.ini")
Run the code above in your browser using DataLab