Changing Variable Types
This lesson is called Changing Variable Types, part of the R in 3 Months (Fall 2021) course. This lesson is called Changing Variable Types, part of the R in 3 Months (Fall 2021) course.
Transcript
Click on the transcript to go to that point in the video. Please note that transcripts are auto generated and may contain minor inaccuracies.
Your Turn
Convert the
number_of_students
variable to numeric by usingas.numeric()
Make sure you can use your
number_of_students
variable to count the total number of students in Oregon
Learn More
The best place to learn more about changing variable types is Chapter 20 of R for Data Science. Be warned that the chapter is dense, but it goes over, in greater depth, various variable (technically, vector) types, how to change them, etc.
Have any questions? Put them below and we will help you out!
Course Content
134 Lessons
You need to be signed-in to comment on this post. Login.
Hannah Ridenour LaFrance • December 14, 2022
I changed some of my variables to numeric in order to run a correlation test, but when I attempt to run cor.test, I get the error message that "'x' must be a numeric vector" even though both x and y are reading as dbl variables. My code is here: https://github.com/herlafrance/NBV_HRL2022RCourse/blob/master/VSA_2022_HRL_NBV_ongoing_project.Rmd with the issues in question occurring from lines 195-222. I'm wondering if there's something going on with na values? Not sure what the remaining roadblock is.