sudo_support | R Documentation |
sudo_support
is a generic function that returns the two boundary values
of object's support.
sudo_support(O) ## S3 method for class 'discrdist' sudo_support(O) ## S3 method for class 'contdist' sudo_support(O) ## S3 method for class 'mixdist' sudo_support(O) ## S3 method for class 'compdist' sudo_support(O) ## S3 method for class 'trans_univdist' sudo_support(O)
O |
distribution object. |
Methods of sudo_support
function calculate the support's boundary
values for any distribution in the package mistr
. This technique
is particularly useful when dealing with a transformed distribution.
Named vector containing two values.
B <- binomdist(10, 0.3) sudo_support(B) B2 <- -3*log(B) sudo_support(B2) sudo_support( mixdist(B2, normdist(), weights = c(0.5, 0.5)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.