Check whether variables are strictly positive
check_positive.RdThis function tests whether variables are strictly positive (for instance for costs and relative risks inputs)
Examples
# Checking whether a variable is strictly positive
check_positive("c_pfs", df = df_pa)
#> Input Negative_values
#> 1 c_pfs None
# Checking whether two variables are strictly positive
# Descreasing the number of iterations to display to 20.
check_positive("c_pfs", "c_pd", df = df_pa)
#> Input Negative_values
#> 1 c_pfs None
#> 2 c_pd None