Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
What is a Factor?
course content

Course Content

R Introduction: Part I

What is a Factor?What is a Factor?

Factor variables are a fundamental concept in statistics and data analysis, often referred to as categorical variables. These variables are distinct from numerical variables in that they have a limited and fixed set of possible values. Examples of factor variables include blood type, currency, and nationality.

Conversely, variables such as monthly income, height, and price are typically not considered categorical due to their unlimited range of potential values. However, even these can be converted into categorical variables, a process we will explore in later chapters.

Let's learn how to create a factor variable.

Recall from the previous section that a factor is a type of vector. To inform R that we are working with factor values, we employ the factor() function and pass the relevant vector of values as an argument.

Upon execution, not only is the vector of values outputted, but we also see a line titled Levels:, which indicates all the distinct (unique) values the factor can take.

Task

Imagine we conducted a survey on blood groups and received 26 responses, which are now stored in the blood vector. Here's what you need to do:

  1. Display the values of the original vector blood.
  2. Convert blood into a factor and assign it to the variable blood_gr.
  3. Display the values of blood_gr.

Everything was clear?

Section 3. Chapter 1
Switch to desktop for real-world practiceContinue from where you are using one of the options below
some-alt