Selecting Data For Modeling
Two Approaches
Dot Notation (choosing pred. target)
# By convention, this is named y
y = model.ColumnChoosing "features"
features = [price, name, clothes]
# By convention, this is named X
X = model[features]Steps to building and using a model
Example using scikit-learn
Last updated