Convert Discrete Factor to Continuous Variable in R (Example)
This tutorial shows how to change a discrete variable to a continuous variable in R programming.
The post looks as follows:
Let’s dive right into the programming part…
Creation of Example Data
The first step is to construct some data that we can use in the following examples:
x <- factor(c(1, 5, 2, 7, 4, 4, 1)) # Create example factor x # Print example factor # [1] 1 5 2 7 4 4 1 # Levels: 1 2 4 5 7
Have a look at the previous output of the RStudio console. It shows that our example data is a factor vector (i.e. a discrete variable) containing seven elements.
Example: Treat Discrete Factor Levels as Continuous Data Using as.character() & as.numeric() Functions
This section illustrates how to convert a discrete factor variable to a continuous data object in R.
For this task, we have to apply the as.numeric and as.character functions as shown below:
x_cont <- as.numeric(as.character(x)) # Convert factor to numeric x_cont # Print numeric variable # [1] 1 5 2 7 4 4 1
As you can see based on the previous output of the RStudio console, our new vector contains the same numbers as the input factor vector. However, this time the factor levels are not shown anymore, because our new vector has the numeric class.
We can also check that by applying the class function to this new vector:
class(x_cont) # Check class of updated data # [1] "numeric"
The RStudio console tells us what we already know: Our updated variable has the numeric class, i.e. it is a continuous variable.
Video & Further Resources
Have a look at the following video that I have published on my YouTube channel. In the video, I’m explaining the R codes of this article in the R programming language:
Please accept YouTube cookies to play this video. By accepting you will be accessing content from YouTube, a service provided by an external third party.
If you accept this notice, your choice will be saved and the page will refresh.
In addition, you may want to read the other posts on this website:
- Convert Character String to Variable Name in R
- Convert Factor to Dummy Indicator Variables for Every Level
- Convert Factor to Date in R
- ggplot2 Error: Continuous value supplied to discrete scale
- R Programming Overview
To summarize: This tutorial has explained how to set a discrete categorical variable to a continuous variable in R programming.
In this tutorial, we have converted a discrete vector object to a continuous variable. Note that we could apply the same syntax to a data frame column as well.
If you have further questions, let me know in the comments section. Besides that, please subscribe to my email newsletter in order to get updates on the newest articles.
Statistics Globe Newsletter