Skip to content
R for the Rest of Us Logo

Changing Variable Types

This lesson is locked

Get access to all lessons in this course.

If the video is not playing correctly, you can watch it in a new window

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

  1. Convert the number_of_students variable to numeric by using as.numeric()

  2. 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!

You need to be signed-in to comment on this post. Login.

Hannah Ridenour LaFrance

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.