Challenge: Vector Labeler
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
Thanks for your feedback!
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Can you explain this in simpler terms?
What are some examples related to this topic?
Where can I learn more about this?
Awesome!
Completion rate improved to 5.56
Challenge: Vector Labeler
Swipe to show menu
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
Thanks for your feedback!
single