Exemple #1
0
def main():
    """Get detection rates for surveys."""
    complex = complex_rates(remake=REMAKE,
                            alphas=ALPHAS,
                            size=SIZE,
                            surveys=SURVEYS)

    # Plot population event rates
    plot_rates(complex)
Exemple #2
0
def main():

    complex = complex_rates(make=MAKE,
                            observe=OBSERVE,
                            alphas=ALPHAS,
                            size=SIZE,
                            surveys=SURVEYS)

    # Plot population event rates
    plot_rates(complex)
Exemple #3
0
def main():
    """Get rates."""
    toy = toy_rates(surveys=SURVEYS, alphas=ALPHAS)

    simple = simple_rates(remake=REMAKE,
                          alphas=ALPHAS,
                          size=SIZE,
                          surveys=SURVEYS)

    complex = complex_rates(remake=REMAKE,
                            alphas=ALPHAS,
                            size=SIZE,
                            surveys=SURVEYS)

    real = real_rates(surveys=SURVEYS)

    plot(toy, simple, complex, real)
Exemple #4
0
def main():
    toy = toy_rates(surveys=SURVEYS, alphas=ALPHAS)

    simple = simple_rates(make=MAKE,
                          observe=OBSERVE,
                          alphas=ALPHAS,
                          size=SIZE,
                          surveys=SURVEYS)

    complex = complex_rates(make=MAKE,
                            observe=OBSERVE,
                            alphas=ALPHAS,
                            size=SIZE,
                            surveys=SURVEYS)

    real = real_rates(surveys=SURVEYS)

    plot(toy, simple, complex, real)