Description Usage Arguments Value Author(s) References See Also Examples
Unload a specified GDS node.
1 | unload.gdsn(node)
|
node |
an object of class |
None.
Xiuwen Zheng
http://github.com/zhengxwen/gdsfmt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # cteate a GDS file
f <- createfn.gds("test.gds")
# add a list to "test.gds"
node <- add.gdsn(f, "val", 1:1000)
node
## Not run:
unload.gdsn(node)
node # Error: Invalid GDS node object (it was unloaded or deleted).
## End(Not run)
index.gdsn(f, "val")
# close the GDS file
closefn.gds(f)
# delete the temporary file
unlink("test.gds", force=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.