#' Gompertz cdf python function
#' @export
pgompertz <- function(x) {
1 - tf$math$exp(-tf$math$exp(x))
}
#' Gumbel cdf python function
#' @export
pgumbel <- function(x) {
tf$math$exp(-tf$math$exp(-x))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.