Regions_of_probability | R Documentation |
These binary operators return a vector of length 2, describing the desired probability region.
a %>x>% b
a %>X>% b
a %<X<% b
a %<x<% b
a %>=X>=% b
a %>=x>=% b
a %<=X<=% b
a %<=x<=% b
a %>=X>% b
a %>=x>% b
a %>X>=% b
a %>x>=% b
a %<=X<% b
a %<=x<% b
a %<X<=% b
a %<x<=% b
a |
scalar. when referring to a discrete random variable, use the syntax " |
b |
scalar. when referring to a discrete random variable, use the syntax " |
A vector of lenght 2.
# Example 1 - Discrete
2L %>x>% 5L
2L %>X>% 5L
2L %<X<% 5L
2L %<x<% 5L
2L %>=X>=% 5L
2L %>=x>=% 5L
2L %<=X<=% 5L
2L %<=x<=% 5L
2L %>=X>% 5L
2L %>=x>% 5L
2L %>x>=% 5L
2L %>X>=% 5L
2L %<=X<% 5L
2L %<=x<% 5L
2L %<X<=% 5L
2L %<x<=% 5L
# Example 2 - Continuous
2 %>x>% 5
2 %>X>% 5
2 %<X<% 5
2 %<x<% 5
2 %>=X>=% 5
2 %>=x>=% 5
2 %<=X<=% 5
2 %<=x<=% 5
2 %>=X>% 5
2 %>=x>% 5
2 %>x>=% 5
2 %>X>=% 5
2 %<=X<% 5
2 %<=x<% 5
2 %<X<=% 5
2 %<x<=% 5
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.