freeinv: Inverse Freeman-Tukey transform

Description Usage Arguments Value Author(s) References See Also Examples

Description

Does the inverse of the Freeman-Tukey inverse sine transformation on a vector input.

Usage

1
freeinv(y, n)

Arguments

y

input data vector.

n

the binomial size corresponding to the observed binomial values.

Value

a

vector of transformed data corresponding to y.

Author(s)

Matt Nunes (m.nunes@ucl.ac.uk)

References

Freeman, M. F. and Tukey, J. W. (1950) Transformations related to the angular and the square root. Ann. Math. Stat., 21, 607–611.

See Also

free

Examples

1
2
3
4
5
6
7
8
9
#generate binomial data:

x<-rbinom(100,10,.5)

y<-free(x,10)

x1<-freeinv(y,10)

#this should be the original data.

binhf documentation built on May 2, 2019, 4:07 p.m.

Related to freeinv in binhf...