Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Factors
Summary

Instruction

Usually you will not create new factor columns based on existing character columns. Instead, you will convert an existing character column to a factor column.

You can overwrite the existing phone column and turn it into a factor, like this:

houses$phone <- factor(houses$phone)

Exercise

Convert the air_conditioner column to a factor.