untrafo {mistr} | R Documentation |
Untransformation of a Distribution Object
Description
untrafo
is a generic function that returns the untransformed random variable, if a transformed object
is given.
Usage
untrafo(O)
## S3 method for class 'trans_standist'
untrafo(O)
## S3 method for class 'trans_mixdist'
untrafo(O)
## S3 method for class 'trans_compdist'
untrafo(O)
Arguments
O |
transformed distribution object. |
Value
Untransformed distribution object.
Examples
B <- binomdist(10, 0.3)
B2 <- -3*log(B)
B2
untrafo(B2)
[Package mistr version 0.0.6 Index]