cv_ {LearningRlab}R Documentation

Coefficient of Variation Calculus Function

Description

This function calculates the coefficient of variation of a numbers vector.

Usage

cv_(x)

Arguments

x

Should be a numbers vector

Details

To calculate the coefficient of variation, the user should give a numbers vector. The result is defined as the ratio of the standard deviation to the mean. The coefficient of variation formule is the following:
cv.jpg

Value

Numeric, the coefficient of variation of the numbers vector.

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)

Jose Manuel Gomez Caceres, josemanuel.gomezc@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)
    
    cv_(data)
  

[Package LearningRlab version 2.4 Index]