hanaml.Quantile.Rdhanaml.Quantile is a R wrapper for SAP HANA PAL Distribution Quantile.
hanaml.Quantile(data, distr.info, col = NULL, complementary = NULL)
| data |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| distr.info |
. The distribution parameters should be chosen follow the tabular:
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
| col |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
| complementary |
|
DataFrame
Returns the cdf value of the distribution, evaluated at input data.
Structured as follow:
INPUT_DATA: input data
QUANTILE: quantile
This algorithm evaluates the value x where the CDF value p=F(x)=P[X<=x] or CCDF value p=F(x)=P[X>x] of a given probability density is reached, i.e. it evaluates F^-1(p).
Input DataFrame data:
> data$Collect() DATACOL 1 0.300 2 0.500 3 0.632 4 0.800
Call the function:
> result <- hanaml.Quantile(data=data, list("weibull", 2.11995, 277.698), correction = FALSE)
Results:
> result$Collect() INPUT_DATA QUANTILE 1 0.300 170.7559 2 0.500 233.6085 3 0.632 277.6551 4 0.800 347.5865