1. Learn
  2. /
  3. Courses
  4. /
  5. R For SAS Users

Exercise

Create data objects in R

In this exercise you will create several types of data objects in R. First you will create a scalar object with one value that can then be used to compute other scalar objects. You will also create three vectors: one with numeric values, one with character values and one with logical TRUE and FALSE values.

Instructions

100 XP
  • Assign the value of 1 to an object x, then create an object w by adding 4 to x.
  • Create a vector object y consisting of three numbers 5, 2 and 3.
  • Create a vector object z consisting of three words "red", "green", "blue".
  • Create a logical object v with the first two elements TRUE and last element FALSE.