explain.percentile {LearningRlab}R Documentation

Percentiles Calculus Explained

Description

Step by step demonstration of the percentiles calculus

Usage

explain.percentile(x)

Arguments

x

Should be a vector

Details

To calculate the percentiles, the user should give a vector. We can saw the percentile formule in the percentile_ help document.

Value

A demonstration of the calculus process

Note

A vector is created by c(), like c(1,2,3,4,5) creates a vector with the numbers: 1,2,3,4,5

Author(s)

Dennis Monheimius, dennis.monhemimius@edu.uah.es
Eduardo Benito, eduardo.benito@edu.uah.es
Juan Jose Cuadrado, jjcg@uah.es
Universidad de Alcala de Henares

Examples

{
    #data creation
    data <- c(1,2,2,5,10,4,2)
    
    explain.percentile(data)
}
    

[Package LearningRlab version 2.4 Index]