- [
signature(x = "MapCollection")
: ...
- [[<-
signature(x = "MapCollection", i = "ANY", j = "ANY", value = "MapSet")
: ...
- [[<-
signature(x = "MapCollection", i = "ANY", j = "ANY", value = "MareyMap")
: ...
- [[
signature(x = "MapCollection")
: obtain the MapSet corresponding to a set name
- $
signature(x = "MapCollection")
: subset by set name
- +
signature(e1 = "MapCollection", e2 = "MareyMap")
: adds a map to the collection
- +
signature(e1 = "MapCollection", e2 = "MapSet")
: adds a set t the collection
- -
signature(e1 = "MapCollection", e2 = "character")
: removes the map named e2 from the object e1.
- coerce
signature(from = "MapCollection", to = "data.frame")
: --> as(object,"data.frame")
- setNames
signature(object = "MapCollection")
: returns the list of the names of all the sets present in the collection
- length
signature(object = "MapCollection")
: returns the length of the collection
- textFile
signature(object = "MapCollection", file = "character")
: Writes the content of the collection to text file text
.