get_clade_name {DAISIEprep} | R Documentation |
Accessor functions for the data (slots) in objects of the
Island_colonist
class
Description
Accessor functions for the data (slots) in objects of the
Island_colonist
class
Usage
get_clade_name(x)
## S4 method for signature 'Island_colonist'
get_clade_name(x)
set_clade_name(x) <- value
## S4 replacement method for signature 'Island_colonist'
set_clade_name(x) <- value
get_status(x)
## S4 method for signature 'Island_colonist'
get_status(x)
set_status(x) <- value
## S4 replacement method for signature 'Island_colonist'
set_status(x) <- value
get_missing_species(x)
## S4 method for signature 'Island_colonist'
get_missing_species(x)
set_missing_species(x) <- value
## S4 replacement method for signature 'Island_colonist'
set_missing_species(x) <- value
get_col_time(x)
## S4 method for signature 'Island_colonist'
get_col_time(x)
set_col_time(x) <- value
## S4 replacement method for signature 'Island_colonist'
set_col_time(x) <- value
get_col_max_age(x)
## S4 method for signature 'Island_colonist'
get_col_max_age(x)
set_col_max_age(x) <- value
## S4 replacement method for signature 'Island_colonist'
set_col_max_age(x) <- value
get_branching_times(x)
## S4 method for signature 'Island_colonist'
get_branching_times(x)
set_branching_times(x) <- value
## S4 replacement method for signature 'Island_colonist'
set_branching_times(x) <- value
get_min_age(x)
## S4 method for signature 'Island_colonist'
get_min_age(x)
set_min_age(x) <- value
## S4 replacement method for signature 'Island_colonist'
set_min_age(x) <- value
get_species(x)
## S4 method for signature 'Island_colonist'
get_species(x)
set_species(x) <- value
## S4 replacement method for signature 'Island_colonist'
set_species(x) <- value
get_clade_type(x)
## S4 method for signature 'Island_colonist'
get_clade_type(x)
set_clade_type(x) <- value
## S4 replacement method for signature 'Island_colonist'
set_clade_type(x) <- value
Arguments
x |
An object whose class is determined by the signature. |
value |
A value which can take several forms to be assigned to an object of a class. |
Value
Getter functions (get_) return a variable from the Island_colonist class, the setter functions (set_) return the modified Island_colonist class.
Author(s)
Joshua W. Lambert
Examples
colonist <- island_colonist()
get_clade_name(colonist)
set_clade_name(colonist) <- "abc"
get_status(colonist)
set_status(colonist) <- "abc"
get_missing_species(colonist)
set_missing_species(colonist) <- 0
get_col_time(colonist)
set_col_time(colonist) <- 1
get_col_max_age(colonist)
set_col_max_age(colonist) <- FALSE
get_branching_times(colonist)
set_branching_times(colonist) <- 0
get_min_age(colonist)
set_min_age(colonist) <- 0.1
get_species(colonist)
set_species(colonist) <- "abc_a"
get_clade_type(colonist)
set_clade_type(colonist) <- 1
[Package DAISIEprep version 0.4.0 Index]