eco.remove: Creating an updated ecogen object by removing results of the...

Description Usage Arguments Author(s) Examples

Description

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

Usage

1

Arguments

eco

Object of class "ecogen".

...

Objects to remove from eco, typed without quotations.

Author(s)

Leandro Roser learoser@gmail.com

Examples

 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)

EcoGenetics documentation built on July 8, 2020, 5:46 p.m.