home *** CD-ROM | disk | FTP | other *** search
-
- _E_x_a_c_t _B_i_n_o_m_i_a_l _T_e_s_t
-
- binom.test(x, n, p = 0.5, alternative = "two.sided")
-
- _A_r_g_u_m_e_n_t_s:
-
- x : number of successes.
-
- n : number of trials.
-
- p : probability of success.
-
- alternative : indicates the alternative hypothesis and must
- be one of "two.sided", "greater" or "less".
- You can specify just the initial letter.
-
- _D_e_s_c_r_i_p_t_i_o_n:
-
- binom.test performs an exact test of the null that the
- probability of success in a Bernoulli experiment of
- length n is p, based on the number x of successes
- observed.
-
- _V_a_l_u_e_s:
-
- A list with class "htest" containing the following com-
- ponents:
-
- statistic : the number of successes, x.
-
- parameter : the number of trials, n.
-
- p.value : the p-value of the test.
-
- null.value : the probability of success under the null, p.
-
- alternative : a character string describing the alternative
- hypothesis.
-
- method : the string "Exact binomial test".
-
- data.name : a character string giving the names of the data.
-
-