Skip to main content Link Search Menu Expand Document (external link)

Procedure 1: Create a Vector with c Function

The c function is used to combine variables into a vector. To create a numeric Vector, start by typing:

NumericVector <- c(1,2,3,4,5)

img.png

Run the line of script to console:

img_1.png

The vector appears in the environment pane, showing the dimensions of [1,5], which would suggest 1 row, five columns:

img_2.png

The vector can be referenced in the console, as with all other variables, by typing:

NumericVector

img_3.png

Run the line of script to the console:

img_4.png

To observe how R handles vectors, comprised of separate types (in so far as it CANT handle it), start by typing:

img_5.png

Run the script to console:

img_6.png

It can be seen that the vector has been created and is displayed in the environment pane, however, it is being created as a character vector owing to the presence of character argument which cannot be coerced to a numeric value and as such the entire vector becomes a character vector. To validate this in the console, type:

Mixed

img_7.png

Run the line of script to console:

img_8.png

It can be validated that the vector has been created as a string, based on the premise of the double quotations around all of the entries.


Jube™. © Jube Holdings Limited 2022 to present.