Nothing
#' Randomise individual elements in the F matrix.
#'
#' @keywords internal
#'
#' @param x xx
#' @param min.scaler xx
#' @param max.scaler xx
#'
#' @return numeric
#'
#' @examples
Randomise_elements <- function(x, min.scaler, max.scaler){
x <- ifelse(x<0.001, 0.001, x)
round(runif(n=1, min = x*min.scaler, max = x*max.scaler), digits = 4)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.