DropPRecording | R Documentation |
Drops recording(s) from PCollection
DropPRecording(X, Recording = NULL, Group = NULL)
X |
A PCollection object |
Recording |
A name of a PRecording in the collection, or a list thereof. If provided, drops that/those PRecording(s). |
Group |
A name of a group in thePCollection. If provided, drops all PRecording belonging to that group. Either recording or group need to be given. |
A PCollection object
data("PRecording")
# first create a PCollection for testing
SampleCollection<-NewPCollection(SampleData,Names="A")
SampleCollection<-AddPRecording(SampleCollection, SampleData)
SampleCollection
# now drop the first Recording stored in it
SampleCollection<-DropPRecording(SampleCollection, GetRecordingNames(SampleCollection)[1])
SampleCollection
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.