Challenge: Vector Labeler
Task
Swipe to start coding
You are given a vector of temperatures in Celsius. Your task is to categorize each temperature as 'Cold', 'Warm', or 'Hot' using vectorized conditional logic with the ifelse function, without using any explicit loops.
- Use the provided
tempsvector. - Assign 'Cold' to temperatures below 15.
- Assign 'Warm' to temperatures from 15 up to and including 30.
- Assign 'Hot' to temperatures above 30.
- Store the result in a character vector called
weather.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 1. ChapterΒ 6
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Awesome!
Completion rate improved to 5.56
Challenge: Vector Labeler
Swipe to show menu
Task
Swipe to start coding
You are given a vector of temperatures in Celsius. Your task is to categorize each temperature as 'Cold', 'Warm', or 'Hot' using vectorized conditional logic with the ifelse function, without using any explicit loops.
- Use the provided
tempsvector. - Assign 'Cold' to temperatures below 15.
- Assign 'Warm' to temperatures from 15 up to and including 30.
- Assign 'Hot' to temperatures above 30.
- Store the result in a character vector called
weather.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 1. ChapterΒ 6
single