Given the following data frame showing X (square footage of houses) and Y (Price of house), which code would find if there is a linear relationship and then -predict the x value of 1,900 square feet (using pyplot)df = {'Price': [250000, 200000,185000,200000], 'sqft': [1850,2200, 2000, 3000]}

🎲 Try a Random Question  |  Total Questions in Quiz: 18  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Applied Datamining with Python — practice the complete quiz, review flashcards, or try a random question.

For Pluralsight Skill Assessments.


Given the following data frame showing X (square footage of houses) and Y (Price of house), which code would find if there is a linear relationship and then -predict the x value of 1,900 square feet (using pyplot)<br>df = {'Price': [250000, 200000,185000,200000], 'sqft': [1850,2200, 2000, 3000]}