Description Usage Arguments Examples
View source: R/random_distribution.R
Default Min
1 | default_min(org_min, org_max, new_min, f = c)
|
org_min |
original minimum value |
org_max |
original maximum value |
new_min |
new minimum value for replacement |
f |
function apply on org_min and new_min to transform to the correct dimension (e.g. "log" in case of "lognorm" or "log10" in case of log10_norm), (default: c()) |
1 2 3 4 | default_min(org_min = 2, org_max = 100, new_min = 0.01, f = log10)
default_min(org_min = 0, org_max = 100, new_min = 0.01, f = log10)
default_min(org_min = 2, org_max = 100, new_min = 0.01, f = log)
default_min(org_min = 0, org_max = 100, new_min = 0.01, f = log)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.