R/get_prob_positive_seq.R

Defines functions get_prob_positive_seq

Documented in get_prob_positive_seq

##' @title Generate positive probability sequence
##'
##' For aggregation experiment generation

##' @return A numeric vector
##' @author Shir Dekel
##' @export
get_prob_positive_seq <- function() {
    prob_positive_seq <- seq(from = 0.05, to = 0.95, by = 0.05) %>%
        .[!. %in% 0.5]

    return(prob_positive_seq)
}
shirdekel/shirthesis documentation built on Dec. 23, 2021, 1:24 a.m.