frecuency_relative_acum {LearningRlab}R Documentation

Accumulated Relative Frecuency Calculus

Description

This function calculate the number of times that a specific number appears in the data set divided by the total length of the vector. The value depends on the elements that are lower than itself

Usage

frecuency_relative_acum(v,x)

Arguments

v

Should be a vector

x

Should be a number

Details

The accumulated relative frecuency formula is the following:
relativeacumfrec.jpg

Value

A double that represents the number of times that the value appears in the vector regarding the total of elements

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,4,3,3,2,5,7,12,1,2,3,12)
    value = 12
    #function execution
    frecuency_relative_acum(data, value)
    
    }

[Package LearningRlab version 2.4 Index]