09_tabular code: UserWarning: X does not have valid feature names,?

I am getting several UserWarning errors when using 09_tabular code. Here is the error that comes up

/opt/conda/lib/python3.7/site-packages/sklearn/base.py:446: UserWarning: X does not have valid feature names, but DecisionTreeRegressor was fitted with feature names
  "X does not have valid feature names, but"

How do I get rid of this warning?

I was able to figure out this warning via stack overflow.

Answer Here: https://stackoverflow.com/questions/69326639/sklearn-warning-valid-feature-names-in-version-

it appears that when data frame reads the headers. when you ad “.values” to your independent variables it disappears.