Learn R Programming

regpro (version 0.1.1)

emp.quantile: Empirical quantile function at one point

Description

Computes the value of an empirical quantile function at one point.

Usage

emp.quantile(arg, dendat)

Arguments

arg
d-vector; the point where the estimate is evaluated
dendat
n*d data matrix; the data matrix of n observations and d variables

Value

is estimated for each column of the data matrix "dendat"

See Also

emp.distribu,

Examples

Run this code
set.seed(2)
n<-100
d<-2 
x<-matrix(runif(n*d),n,d)

arg<-c(0.5,0.5)
emp.quantile(arg,x)

Run the code above in your browser using DataLab