Description Usage Arguments Details Value Author(s) References See Also Examples
Function that transforms a distribution.
1 | dist.trans.create(dist, trans)
|
dist |
Object of the class |
trans |
Object of the class |
no details
|
Transformed distribution as an object of the class |
Simon L. Rinderknecht
Rinderknecht, S.L., Borsuk, M.E. and Reichert, P. Eliciting Density Ratio Classes. International Journal of Approximate Reasoning 52, 792-804, 2011. doi10.1016/j.ijar.2011.02.002. \ Rinderknecht, S. L., Borsuk, M. E. and Reichert, P. Bridging Uncertain and Ambiguous Knowledge with Imprecise Probabilities, Environmental Modelling & Software 36, 122-130, 2012.
See also fitDRC
.
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Example 01 ##
trans.tan <- trans.tan.create(c(33,99))
dist.student <- dist.student.create(c(0,1,1000))
dist <- dist.trans.create(dist.student,trans.tan)
dist
#plot(dist)
## Example 02 ##
trans.arctan <- trans.arctan.create(c(0,10))
dist.uniform <- dist.uniform.create(c(0,10))
dist <- dist.trans.create(dist.uniform,trans.arctan)
dist
#plot(dist)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.