removeMember {datapack} | R Documentation |
Remove the Specified Member from the Package
Description
Given the identifier of a DataObject in a DataPackage, delete the DataObject from the DataPackage.
Usage
removeMember(x, ...)
## S4 method for signature 'DataPackage'
removeMember(x, do, removeRelationships = FALSE)
Arguments
x |
a DataPackage object |
... |
(Not yet used) |
do |
The package member to remove, either as a |
removeRelationships |
A |
Details
The removeMember
method removes the specified DataObject from the DataPackage. In
addition, any package relationships that included the DataObject are removed.
See Also
Examples
dp <- new("DataPackage")
data <- charToRaw("1,2,3\n4,5,6")
do <- new("DataObject", id="myNewId", dataobj=data, format="text/csv", user="jsmith")
dp <- addMember(dp, do)
# Remove the package member and any provenance relationships that reference it.
removeMember(dp, "myNewId", removeRelationships=TRUE)
[Package datapack version 1.4.1 Index]