View source: R/c.Distribution.R
c.Distribution | R Documentation |
Helper function for quickly combining distributions into a VectorDistribution.
## S3 method for class 'Distribution' c(..., name = NULL, short_name = NULL, decorators = NULL)
... |
distributions to be concatenated. |
name, short_name, decorators |
See |
A VectorDistribution
VectorDistribution
# Construct and combine c(Binomial$new(), Normal$new()) # More complicated distributions b <- truncate(Binomial$new(), 2, 6) n <- huberize(Normal$new(), -1, 1) c(b, n) # Concatenate VectorDistributions v1 <- VectorDistribution$new(list(Binomial$new(), Normal$new())) v2 <- VectorDistribution$new( distribution = "Gamma", params = data.table::data.table(shape = 1:2, rate = 1:2) ) c(v1, v2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.