Description Usage Arguments Author(s) See Also Examples
View source: R/visualize.unif.R
Generates a plot of the Uniform distribution with user specified parameters.
1 | visualize.unif(stat = 1, a = 0, b = 1, section = "lower")
|
stat |
a statistic to obtain the probability from. When using the
"bounded" condition, you must supply the parameter as |
a |
starting point. Note: |
b |
end point. Note: |
section |
Select how you want the statistic(s) evaluated via
|
James Balamuta
1 2 3 4 5 6 7 8 | # Evaluates lower tail.
visualize.unif(stat = 8.75, a = 7, b = 10, section = "lower")
# Evaluates bounded region.
visualize.unif(stat = c(3,6), a = 1, b = 7, section = "bounded")
# Evaluates upper tail.
visualize.unif(stat = 2, a = 1, b = 5, section = "upper")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.