ComenzarEmpieza gratis

What are we predicting?

Which of these fields (or columns) is the value we are trying to predict for?

  • TAXES
  • SALESCLOSEPRICE
  • DAYSONMARKET
  • LISTPRICE

Este ejercicio forma parte del curso

Feature Engineering with PySpark

Ver curso

Instrucciones del ejercicio

  • From the listed columns above, identify which one we will use as our dependent variable $Y$.
  • Using the loaded data set df, filter it down to our dependent variable with select(). Store this dataframe in the variable Y_df.
  • Display summary statistics for the dependent variable using describe() on Y_df and calling show() to display it.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Select our dependent variable
Y_df = df.____([____])

# Display summary statistics
Y_df.____().____()
Editar y ejecutar código