Description Usage Arguments Details Value Examples
View source: R/speedestimates.R
Expected time of first successful migration, which may occur before fixation
1 | time_expected(r1, r2, K, m, migration_type = 0, d = NA)
|
r1 |
birth rate of cells in the destination deme, relative to reference birth rate |
r2 |
birth rate of migrating cells, relative to r1 |
K |
deme carrying capacity |
m |
migration rate per cell, relative to birth rate |
migration_type |
0 or 1 (see details) |
d |
migration distance relative to 1/sqrt(K); if NA then d is set to sqrt(K) |
Meaning of migration_type:
0: migration, such that a migration attempt occurs only following a birth event
1: migration, such that migration is independent of birth
The waiting time.
1 2 3 4 5 6 | time_expected(1, 1.1, 2, 0.1, 0)
time_expected(1, 1.1, 2, 0.1, 1)
# for comparison:
time_migration(2, 0.1, 1, 1.1, 0)
time_migration(2, 0.1, 1, 1.1, 1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.