Hypothesis test for two means of percentages
Hypothesis test for two means of percentages.
percent.ttest(x, y, logged = FALSE)
x |
A numerical vector with the percentages of the first sample. Any value between 0 and 1 (inclusive) is allowed. |
y |
A numerical vector with the percentages of the first sample. Any value between 0 and 1 (inclusive) is allowed. |
logged |
Should the p-values be returned (FALSE) or their logarithm (TRUE)? |
This is the prop.reg
but with a single categorical predictor which has two
levels only. It is like a t-test for the means of two samples haivng percentages.
A vector with three elements, the phi parameter, the test statistic and its associated p-value.
Michail Tsagris
R implementation and documentation: Michail Tsagris <mtsagris@yahoo.gr> and Manos Papadakis <papadakm95@gmail.com>.
Papke L. E. & Wooldridge J. (1996). Econometric methods for fractional response variables with an application to 401(K) plan participation rates. Journal of Applied Econometrics, 11(6): 619-632.
McCullagh, Peter, and John A. Nelder. Generalized linear models. CRC press, USA, 2nd edition, 1989.
x <- rbeta(100, 3, 1) y <- rbeta(100, 7.5, 2.5) res<-percent.ttest(x, y)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.