Creating an updated ecogen object by removing results of the slot OUT

eco.remove(eco, ...)

Arguments

eco

Object of class "ecogen".

...

Objects to remove from eco, typed without quotations.

Examples

# 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) # }