summary_dist
R/dist.R
summary_dist.Rd
Method for constructing a summary_dist object.
summary_dist(name, mean, vcov, nobs = NULL)
The name of the distribution
The mean of the distribution
The variance of the distribution
The number of observations used to construct the distribution, if applicable.
A summary_dist object
s <- summary_dist(name = "my_dist", mean = 0, vcov = 1) print(s) #> my_dist #> Mean: #> [1] 0 #> Covariance: #> [1] 1