d.pizza is a data frame. It's a column named temperature contains only numbers. If you extract temperature using the [] accessors, its class defaults to numeric. How can you access temperature so that it retains the class of data.frame?> class( d.pizza[ , 'temperature' ] )> 'numeric'

🎲 Try a Random Question  |  Total Questions in Quiz: 47  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
R (Programming Language) Quiz — practice the complete quiz, review flashcards, or try a random question.

R (Programming Language) MCQs For LinkedIn Skill Assessments.


d.pizza is a data frame. It's a column named temperature contains only numbers. If you extract temperature using the [] accessors, its class defaults to numeric. How can you access temperature so that it retains the class of data.frame?<br><br>> class( d.pizza[ , 'temperature' ] )<br>> 'numeric'<br>