Description Usage Arguments Author(s) Examples
Creating an updated ecogen object by removing results of the slot OUT
1 | eco.remove(eco, ...)
|
eco |
Object of class "ecogen". |
... |
Objects to remove from eco, typed without quotations. |
Leandro Roser learoser@gmail.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ## Not run:
data(eco.test)
variog <- eco.variogram(eco[["P"]][, 1], eco[["XY"]])
# the assignment of values can be made with the corresponding accessors,
# using the generic notation of EcoGenetics
# (<ecoslot.> + <name of the slot> + <name of the object>).
# See help("EcoGenetics accessors")
ecoslot.OUT(eco) <- variog
we.are.numbers <- c(1:10)
we.are.characters <- c("John Coltrane", "Charlie Parker")
ecoslot.OUT(eco) <- list(we.are.numbers, we.are.characters)
ecoslot.OUT(eco)
eco <- eco.remove(eco, we.are.numbers)
ecoslot.OUT(eco)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.