drawVector {LearningRlab} | R Documentation |
Draw Vector Function
Description
This function prints all the elements of a vector
Usage
drawVector(buffer)
Arguments
buffer |
A vector of elements |
Value
There isn't return value, prints on screen
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 or c(true,false,false) creates a vector with the booleans: true, false, true
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:12)
drawVector(data)
}
[Package LearningRlab version 2.4 Index]