drawVector | R Documentation |
This function prints all the elements of a vector
drawVector(buffer)
buffer |
A vector of elements |
There isn't return value, prints on screen
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
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
{
#data creation
data <- c(1:12)
drawVector(data)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.