Learn R Programming

pcds (version 0.1.8)

centerMc: Parameterized center of an interval

Description

Returns the (parameterized) center, \(M_c\), of the interval, int\(=(a,b)\), parameterized by \(c \in (0,1)\) so that \(100c\) % of the length of interval is to the left of \(M_c\) and \(100(1-c)\) % of the length of the interval is to the right of \(M_c\). That is, for the interval, int\(=(a,b)\), the parameterized center is \(M_c=a+c(b-a)\).

See also (ceyhan:metrika-2012,ceyhan:revstat-2016;textualpcds).

Usage

centerMc(int, c = 0.5)

Value

(parameterized) center inside int

Arguments

int

A vector with two entries representing an interval.

c

A positive real number in \((0,1)\) parameterizing the center inside int\(=(a,b)\) with the default c=.5. For the interval, int\(=(a,b)\), the parameterized center is \(M_c=a+c(b-a)\).

Author

Elvan Ceyhan

References

See Also

centersMc

Examples

Run this code
c<-.4
a<-0; b<-10
int = c(a,b)
centerMc(int,c)

c<-.3
a<-2; b<-4; int<-c(a,b)
centerMc(int,c)

Run the code above in your browser using DataLab