In this section we will investigate the following questions: [[ How does R understand data? ]]
A script is a text document that contains instructions and commands The # symbol is used to leave comments, which R will not try to interpret as a command.
The console (below) is for submitting commands to be interpreted in R. To run a command in the console, you can copy+paste it into the console and press enter.
Copy and paste the following into the console and run it:
> print("the instructor's name is Sydney")
[1] "the instructor's name is Sydney"
Run a single line of your script in the console by placing your cursor on the line you want to submit and use your cursor to press the “Run” button at the top right. You can also use the shortcut key strokes cmd+enter (mac) or ctrl+enter (PC) to run a single line at a time.
The two other most important keyboard shortcuts that you’ll want to use are the Tab key to auto-complete your typing at the command line and ctrl+up arrow or cmd+up arrow to access the most recently typed commands.
You can also select only part of a line to have it run on the console. Try running the following command without copy+paste: print(“my name is _____”)
R can also be used to perform calculations, such as the following:
> 5+1/3
[1] 5.333333
What rules does R apply for the order of operations and how do you find out?
Let’s modify the statement above to see if adding parentheses changes the result:
> (5+1)/3
[1] 2
Does it matter if there are spaces added into this?
> ( 5 + 1 ) / 3
[1] 2
That shows us that the spaces did not matter for the calculation.
R also has some pre-defined matematical terms that you can use, such as pi.
What is pi times pi ?
> pi*pi
[1] 9.869604
> pi^2 # this does the same thing because ^ is, here, interpreted as "taken to the exponent"
[1] 9.869604
Objects are like shortcuts. They are a way to store data without having to re-type them. By virtue, objects are only created once something has been assigned to them. Anything can be stored in an object, including figures! Let’s repeat our simple math calculation above, this time using objects. If we want to calculate (5+1)/3 using objects, it needs to look like this: (a+b)/c The objects a, b, and c do not exist yet, so we need to assign values to them in order to create them. R interprets the less than symbol and dash as “assign”. So we need to do the following:
> a <- 5 # assign the number 5 to a
> b <- 1 # assign number 1 to b
> c <- 3 # assign 3 to c
As you are assigning these numbers to objects, they appear in your environment (top right). These objects are not being saved to a hard drive, they are stored in memory of your computer only.
NOTE if you assign something to an object that already exists, R will do what you tell it and overwrite that obect with the new assignment.
Now we can execute our calculation using objects instead of numbers. Try it!
> (a+b)/c
[1] 2
Avoid creating object names that start with a numnber because R will look at the first character and try to interpret the entire name as a mathematical term. Try this:
> 2foxes <- 1
Error: <text>:1:2: unexpected symbol
1: 2foxes
^
The error here tells us that something went wrong and R cannot proceed.
If we want to assign (a+b)/c to a new object called ‘answer’ – what will the object contain? Find out:
> answer <- (a+b)/c
Take a look at the object ‘answer’ by typing the name into the command line:
> answer
[1] 2
What would you get if you multiplied answer by 2?
> answer*2
[1] 4
The examples above dealt with numeric values assigned to objects. We can also store character data in objects. Since some words and phrases can contain spaces or other punctuation, we need to place our words and phrases inside quotation marks.
Let’s use my name for this exercise. Let’s create two objects, one for my first name and another for my last name.
> first.name <- "Sydney"
> last.name <- 'Everhart' # Single quotes work too!
We now have those two objects. Let’s look at them.
> first.name
[1] "Sydney"
> last.name
[1] "Everhart"
Since we each have a first name and a family name, I want you to modify these objects so that instead of my name, they contain your name.
> first.name <- "Sydney" #Replace my name with your own name
> last.name <- "Everhart"
Did this work? Let’s look at the two objects:
> first.name
[1] "Sydney"
> last.name
[1] "Everhart"
Using a function c() we can tell R to combine these two objects. This function will combine values from the first object with the second object and return them as a single observation. Let’s try it:
> c(first.name, last.name)
[1] "Sydney" "Everhart"
Notice how the names are returned inside quotation marks, which tells us that these are interpreted as character data in R. You’ll also notice that each name is placed inside quotes and that’s because c() combined names into a single vector that contains two elements, your first and your last name. This brings us to the next part in our introduction, vectors.
Up to here, the objects we’ve created only contained a single element. You can store more than one element in a 1-dimensional object of unlimited length. Let’s create an object that is a vector of our first and last names using the two objects that we created previously.
Avoid re-typing your commands. Since the last command that we ran contained what we want, we can simply use the up arrow to access the most recently submitted command and modify it. You can also access the History tab in the top right panel of RStudio or, at the command line, access a list of the most recent commands using the cmd + up arrow OR the ctrl + up arrow.
> name <- c(first.name, last.name)
We can inspect this object by typing name at the command line. We can inspect the structure of this object using the function str() on name.
> str(name)
chr [1:2] "Sydney" "Everhart"
This shows us that this is a vector because the elements in it are ordered from 1 to 2 as shown by the [1:2]. This also tells us that this list is a character list, which is indicated by the chr label. We also see the two elements in this vector, which is your first and last name.
What is the length of your name? We can find out using the function lenght()
> length(name)
[1] 2
Let’s compare this to a vector that contains only numeric data. For this example, let’s create three objects to represent today’s date in numbers for the month (03), day (29), and year (2018).
> month <- 03
> day <- 29
> year <- 2018
combine those three objects using the combine function:
> today <- c(month, day, year)
Inspect this object by typing the name today
at the command line. You’ll see that R has eliminated the zero that preceeds the 3 and has kept the order we provided for these elements in the vector. Let’s take a look at the structure of today.
> str(today)
num [1:3] 3 29 2018
You’ll notice that the vector has three elements [1:3] and it contains only numeric data.
Let’s do the same thing using the name March for month and see how that changes our vector. Notice that we are not modifying the object month, we are simply combining our two existing objects with the word “March”.
> c("March", day, year)
[1] "March" "29" "2018"
In this case we didn’t re-assign the object named today
. To inspect the structure of this vector, we can wrap the statement within the str() function, as shown below. We also want to inspect the data class (ie. whether numeric or character) using the function class(). Don’t forget to use the up-arrow to access the last like that you ran!
> str(c("March", day, year)) # this shows us the structure of the object
chr [1:3] "March" "29" "2018"
> class(c("March", day, year))
[1] "character"
Notice how R is trying to keep our data organized according to type. Rather than coding this vector as containing numbers and characters, it has decided that because it can’t call everything in our vector a number that it will call everything characters. This process is called coercion.
Let’s say we wanted to create a table that showed every date this month:
day month year
1 3 2018
2 3 2018
3 3 2018
...
We know there are 31 days in the month, so we can modify the object day to contain all of the 31 days in this month. Instead of typing each number out by hand, we can place a colon (:
) between 1 and 31, which is a shortcut in R for creating sequences of numbers.
> 1:31
[1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
[24] 24 25 26 27 28 29 30 31
You see at in the console that this created a sequence of 31 numbers from 1 to 31. Let’s go ahead and assign this to the object day
.
> day <- 1:31
For the objects month and year, we don’t need to modify them, however, we want to repeat each of them a total of 31 times because we need to repeat each, once for each day.
We can easily repeat the number 3 a total of 31 times using the function rep()
, specifying how many times
we should repeat this object. Let’s assign 3
to month
and modify the object month to contain 31 copies.
> month <- 3
> month <- rep(month, times = 31)
Let’s check to make sure that month is correct using the function length()
:
> length(month)
[1] 31
There are 31 elements in this vector and we can inspect individual elements in the vector based on their ordered position using square brackets:
> day[29]
[1] 29
> month[29] # the number inside the brackets corresponds to location of element in list, not value
[1] 3
In this case, the 29th element in day
is 29, and the 29th element in month
is 3 which confirms that we created this correctly.
Type
day[32]
into your R console. What do you get? What does it mean? Ask yourself the question, “Are there any months with 32 days?”
We can create the object year
to contain 31 repeats of 2018, however, this time, let’s say we wanted to make sure that this object was always the same length as the number of days we have in a month. Instead of specifying 31
, we can simply get that information using the length()
function. Here, we’ll replace 31
with length(day)
, which is equivalent.
> year <- rep(2018, times = length(day))
> year
[1] 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018
[15] 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018
[29] 2018 2018 2018
> length(year)
[1] 31
We now have three vectors to create our table and they are exactly the same length:
> length(day)
[1] 31
> length(month)
[1] 31
> length(year)
[1] 31
Remember that our goal here is to create a table with the columns “month”, “day”, and “year”. First, here’s a quick reminder of what we want this to look like:
day month year
1 3 2018
2 3 2018
3 3 2018
...
In order to create a data frame, we can use the command data.frame()
. This function will create columns out of vectors that are all the same length. In the function, we just have to specify the columns.
> March <- data.frame(day = day, month = month, year = year)
Let’s inspect this new object in the same way as vectors:
> march
Error in eval(expr, envir, enclos): object 'march' not found
> length(March)
[1] 3
Using the length()
function, we see it says 3. This is because March
has three columns: day, month, and year. A data frame is a two-dimensional object which stores its information in rows and columns.
Because this is a 2-dimensional object, we can inspect the dimensions using the dim()
function:
> dim(March)
[1] 31 3
This tells us that we have 31 rows and 3 columns. R also provides the nrow()
and ncol()
functions to make it easier to remember which is which:
> nrow(March)
[1] 31
> ncol(March)
[1] 3
What happens when we use the str()
function?
> str(march)
Error in str(march): object 'march' not found
We can see that it’s listing the columns we have in our table and showing us how they are represented. Notice the $
to the left of each column name, this is how we access the columns of the data frame:
> March$day
[1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
[24] 24 25 26 27 28 29 30 31
> March$month
[1] 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
> March$year
[1] 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018
[15] 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018 2018
[29] 2018 2018 2018
You can see that these are the same as the vectors we created earlier.
Because this object is rather large, we didn’t get to see the top rows of the obect. A quick way to look at the top of the object is with the head()
function and if we wanted to look at the bottom, we would use tail()
.
> head(March) # if this didn't work, double-check that you spelled the object name correctly
day month year
1 1 3 2018
2 2 3 2018
3 3 3 2018
4 4 3 2018
5 5 3 2018
6 6 3 2018
Now that we have our table, the question becomes, how the heck do we inspect different elements?
Just like we can inspect the 29th element in the day
vector using day[29]
, we can also use the brackets to subset a table, the only catch is that we have to use the coordinates of the row(s) and the column(s) we want. We can do this by specifying [row, column]
. These are analagous to X and Y Cartesian coordinates. Let’s take a look at the elements in the 29th row, separately:
> March[29, 1] # day
[1] 29
> March[29, "month"] # you can use characters when the elements are named!
[1] 3
> March[29, 3] # year
[1] 2018
If we don’t specify a dimension, R will give us the entire contents of that dimension. Let’s look at the row that contains today’s date:
> March[29, ]
day month year
29 29 3 2018
You can also use this to access just one column of the matrix. Let’s look at month:
> March[, 2]
[1] 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
Notice, however that this result now appears to be a a vector! This is because of a sneaky default option called drop = TRUE
. R tries to “help” by removing the dimensions of your data frame if you choose only one column. If you want to keep this as a data frame, you can turn off this option inside the brackets:
> March[, 2, drop = FALSE]
month
1 3
2 3
3 3
4 3
5 3
6 3
7 3
8 3
9 3
10 3
11 3
12 3
13 3
14 3
15 3
16 3
17 3
18 3
19 3
20 3
21 3
22 3
23 3
24 3
25 3
26 3
27 3
28 3
29 3
30 3
31 3
Now that we’ve inspected the object March
, let’s create the same thing for the month of April. How should we do this?
One option would be to create new obects for day, month, and year and combine them just like we did for March. What is the simplest method to do this, using the fewest number of steps?
We can simply make a copy of March
with 30 days.
> April <- March[1:30, , drop = FALSE] # Created new object called April that used rows 1:30
Inspect what we have now:
> str(April)
'data.frame': 30 obs. of 3 variables:
$ day : int 1 2 3 4 5 6 7 8 9 10 ...
$ month: num 3 3 3 3 3 3 3 3 3 3 ...
$ year : num 2018 2018 2018 2018 2018 ...
> tail(April) # we should have 30 days.
day month year
25 25 3 2018
26 26 3 2018
27 27 3 2018
28 28 3 2018
29 29 3 2018
30 30 3 2018
We need to change the month column so that it says 4 instead of 3, how can we do this? Let’s just look at the column first:
> April$month
[1] 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
We need to add 1 to each of these values, so let’s try that!
> April$month + 1
[1] 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4
This worked, so now we just need to replace values in April[,2] with the new expression:
> April$month <- April$month + 1 # Did it work?
> str(April)
'data.frame': 30 obs. of 3 variables:
$ day : int 1 2 3 4 5 6 7 8 9 10 ...
$ month: num 4 4 4 4 4 4 4 4 4 4 ...
$ year : num 2018 2018 2018 2018 2018 ...
Let’s combine both of these tables into one. Of course, now that we have two dimensions, there are two ways we can combine them, by rows or by columns. R provides two functions that can help us with that called rbind()
and cbind()
which bind together rows and columns, respectively. Which one should we use? If you’re unsure, try both!
> cbind(March, April)
Error in data.frame(..., check.names = FALSE): arguments imply differing number of rows: 31, 30
> rbind(March, April)
day month year
1 1 3 2018
2 2 3 2018
3 3 3 2018
4 4 3 2018
5 5 3 2018
6 6 3 2018
7 7 3 2018
8 8 3 2018
9 9 3 2018
10 10 3 2018
11 11 3 2018
12 12 3 2018
13 13 3 2018
14 14 3 2018
15 15 3 2018
16 16 3 2018
17 17 3 2018
18 18 3 2018
19 19 3 2018
20 20 3 2018
21 21 3 2018
22 22 3 2018
23 23 3 2018
24 24 3 2018
25 25 3 2018
26 26 3 2018
27 27 3 2018
28 28 3 2018
29 29 3 2018
30 30 3 2018
31 31 3 2018
32 1 4 2018
33 2 4 2018
34 3 4 2018
35 4 4 2018
36 5 4 2018
37 6 4 2018
38 7 4 2018
39 8 4 2018
40 9 4 2018
41 10 4 2018
42 11 4 2018
43 12 4 2018
44 13 4 2018
45 14 4 2018
46 15 4 2018
47 16 4 2018
48 17 4 2018
49 18 4 2018
50 19 4 2018
51 20 4 2018
52 21 4 2018
53 22 4 2018
54 23 4 2018
55 24 4 2018
56 25 4 2018
57 26 4 2018
58 27 4 2018
59 28 4 2018
60 29 4 2018
61 30 4 2018
Notice how cbind gave us an error. What happened? Looks like rbind worked, so let’s assign that to a new object:
> spring <- rbind(March, April)
Inspect this object to ensure it was made correctly.
> str(spring)
'data.frame': 61 obs. of 3 variables:
$ day : int 1 2 3 4 5 6 7 8 9 10 ...
$ month: num 3 3 3 3 3 3 3 3 3 3 ...
$ year : num 2018 2018 2018 2018 2018 ...
> head(spring)
day month year
1 1 3 2018
2 2 3 2018
3 3 3 2018
4 4 3 2018
5 5 3 2018
6 6 3 2018
> tail(spring)
day month year
56 25 4 2018
57 26 4 2018
58 27 4 2018
59 28 4 2018
60 29 4 2018
61 30 4 2018
We now have a new object spring that contains only numeric data. Let’s revise this object so that it uses names for the month instead of numbers and so that we know what day of the week it is. We want it to look like this:
day month year wkday
1 "March" 2018 "Mon"
2 "March" 2018 "Tues"
3 "March" 2018 "Wed"
...
Months need to be changed from the number 3 to “March” and from 4 to “April” in the second column. Let’s first look at the month column.
> spring$month
[1] 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4
[36] 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4
We want to specify only the cells in this list that are 3. We know that rows 1 to 31 contain 3’s and the rest contain 4’s, which means we can inspect those rows in the object spring:
> spring[1:31, "month"] # March
[1] 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
> spring[-c(1:31), "month"] # April
[1] 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4
Notice that we used
-c(1:31)
, what do you think this is doing? Why would this give us the values for the month of April?
We can use the ifelse()
function to replace the values in our column. This function produces a new vector based on a condition specified for another vector. For example, if we graded students on a scale from 1 to 10 where anything above 3 was a passing grade, we could create a pass/fail vector like so:
> grades <- data.frame(grade = 1:10)
> grades
grade
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 10
> grades$eval <- ifelse(grades$grade > 5, yes = "pass", no = "fail")
> grades
grade eval
1 1 fail
2 2 fail
3 3 fail
4 4 fail
5 5 fail
6 6 pass
7 7 pass
8 8 pass
9 9 pass
10 10 pass
We can do the same thing with our spring
data frame, except this time, we want to say if the month is 3, then it’s March, otherwise, we call it April:
> ifelse(spring$month == 3, yes = "March", no = "April")
[1] "March" "March" "March" "March" "March" "March" "March" "March"
[9] "March" "March" "March" "March" "March" "March" "March" "March"
[17] "March" "March" "March" "March" "March" "March" "March" "March"
[25] "March" "March" "March" "March" "March" "March" "March" "April"
[33] "April" "April" "April" "April" "April" "April" "April" "April"
[41] "April" "April" "April" "April" "April" "April" "April" "April"
[49] "April" "April" "April" "April" "April" "April" "April" "April"
[57] "April" "April" "April" "April" "April"
> spring$month <- ifelse(spring$month == 3, yes = "March", no = "April")
Notice that we had to use
==
to indicate equality. This is so that R doesn’t get confused and assume we are using the argument assignment,=
.
Let’s inspect spring now.
> str(spring)
'data.frame': 61 obs. of 3 variables:
$ day : int 1 2 3 4 5 6 7 8 9 10 ...
$ month: chr "March" "March" "March" "March" ...
$ year : num 2018 2018 2018 2018 2018 ...
> head(spring)
day month year
1 1 March 2018
2 2 March 2018
3 3 March 2018
4 4 March 2018
5 5 March 2018
6 6 March 2018
> class(spring)
[1] "data.frame"
Now we are ready to add a new column to our data frame spring
so that it looks like this:
day month year wkday
1 "March" 2018 "Thurs"
2 "March" 2018 "Fri"
3 "March" 2018 "Sat"
...
How should we do this, using the fewest number of steps?
We know that this column will repeat “Thurs”, “Fri”, “Sat”, “Sun”, “Mon”, “Tues”, “Wed” (since March starts on a Thursday this year). We also know that we need that list to repeat until the total length of the list is equal to the number of days in March and April, which can be determined by using the nrow()
function.
> eachday <- c("Thurs", "Fri", "Sat", "Sun", "Mon", "Tues", "Wed")
> wkday <- rep(eachday, times = nrow(spring))
> wkday
[1] "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs"
[9] "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri"
[17] "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat"
[25] "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun"
[33] "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon"
[41] "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues"
[49] "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed"
[57] "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs"
[65] "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri"
[73] "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat"
[81] "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun"
[89] "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon"
[97] "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues"
[105] "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed"
[113] "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs"
[121] "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri"
[129] "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat"
[137] "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun"
[145] "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon"
[153] "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues"
[161] "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed"
[169] "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs"
[177] "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri"
[185] "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat"
[193] "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun"
[201] "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon"
[209] "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues"
[217] "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed"
[225] "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs"
[233] "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri"
[241] "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat"
[249] "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun"
[257] "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon"
[265] "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues"
[273] "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed"
[281] "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs"
[289] "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri"
[297] "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat"
[305] "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun"
[313] "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon"
[321] "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues"
[329] "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed"
[337] "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs"
[345] "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri"
[353] "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat"
[361] "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun"
[369] "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon"
[377] "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues"
[385] "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed"
[393] "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs"
[401] "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri"
[409] "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat"
[417] "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun"
[425] "Mon" "Tues" "Wed"
Uh-oh, it looks like we made this list far too long. This is because times
means how many times the entire vector needs to be repeated. If we look at the examples in the help page for rep (type help(“rep”)), we can see that we need to use the argument length.out
> wkday <- rep(eachday, length.out = nrow(spring))
Inspect your new object wkday
and make sure it’s the correct length.
> length(wkday) == nrow(spring)
[1] TRUE
> wkday
[1] "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs"
[9] "Fri" "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri"
[17] "Sat" "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat"
[25] "Sun" "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun"
[33] "Mon" "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon"
[41] "Tues" "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues"
[49] "Wed" "Thurs" "Fri" "Sat" "Sun" "Mon" "Tues" "Wed"
[57] "Thurs" "Fri" "Sat" "Sun" "Mon"
Now we are ready to add this vector to our data frame. We can do this by specifying the name of the column we want to add.
> spring$wkday <- wkday
> spring
day month year wkday
1 1 March 2018 Thurs
2 2 March 2018 Fri
3 3 March 2018 Sat
4 4 March 2018 Sun
5 5 March 2018 Mon
6 6 March 2018 Tues
7 7 March 2018 Wed
8 8 March 2018 Thurs
9 9 March 2018 Fri
10 10 March 2018 Sat
11 11 March 2018 Sun
12 12 March 2018 Mon
13 13 March 2018 Tues
14 14 March 2018 Wed
15 15 March 2018 Thurs
16 16 March 2018 Fri
17 17 March 2018 Sat
18 18 March 2018 Sun
19 19 March 2018 Mon
20 20 March 2018 Tues
21 21 March 2018 Wed
22 22 March 2018 Thurs
23 23 March 2018 Fri
24 24 March 2018 Sat
25 25 March 2018 Sun
26 26 March 2018 Mon
27 27 March 2018 Tues
28 28 March 2018 Wed
29 29 March 2018 Thurs
30 30 March 2018 Fri
31 31 March 2018 Sat
32 1 April 2018 Sun
33 2 April 2018 Mon
34 3 April 2018 Tues
35 4 April 2018 Wed
36 5 April 2018 Thurs
37 6 April 2018 Fri
38 7 April 2018 Sat
39 8 April 2018 Sun
40 9 April 2018 Mon
41 10 April 2018 Tues
42 11 April 2018 Wed
43 12 April 2018 Thurs
44 13 April 2018 Fri
45 14 April 2018 Sat
46 15 April 2018 Sun
47 16 April 2018 Mon
48 17 April 2018 Tues
49 18 April 2018 Wed
50 19 April 2018 Thurs
51 20 April 2018 Fri
52 21 April 2018 Sat
53 22 April 2018 Sun
54 23 April 2018 Mon
55 24 April 2018 Tues
56 25 April 2018 Wed
57 26 April 2018 Thurs
58 27 April 2018 Fri
59 28 April 2018 Sat
60 29 April 2018 Sun
61 30 April 2018 Mon