View source: R/removeFunction.R
removeFunction | R Documentation |
Remove a function from the "function" slot in a PAMpalSettings object.
removeFunction(pps, index = NULL)
pps |
a PAMpalSettings object to remove a function from |
index |
index indicating which function to move, counting from
|
the same PAMpalSettings object as pps, with the function removed from the "functions" slot
Taiki Sakai taiki.sakai@noaa.gov
exPps <- new('PAMpalSettings')
exPps <- addFunction(exPps, roccaWhistleCalcs, module='WhistlesMoans')
exPps <- addFunction(exPps, standardCepstrumCalcs, module = 'Cepstrum')
removeFunction(exPps, 1)
removeFunction(exPps, 1:2)
# normally best to use interactively instead of specifying index
if(interactive()) removeFunction(exPps)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.