In her regression analysis, Rose specified the formula input to the statsmodels.formula.api.ols function as:
formula = "MonthRent ~ Bedroom + Bathroom + Stories"
Which of the following statement is incorrect regarding this regression that Rose is running?
There are three independent variables in this regression analysis.
The DataFrame that Rose enters after the formula should have columns named MonthRent, Bedroom, Bathroom, and Stories.
The current formula is specified incorrectly; the ~ sign should be replaced with =
MonthRent is the dependent variable in the regression.