python 请问这是咋回事 啊

问题遇到的现象和发生背景
问题相关代码,请勿粘贴截图
运行结果及报错内容

c:\users\admin\appdata\local\programs\python\python39\lib\site-packages\sklearn\base.py:450: UserWarning: X does not have valid feature names, but RandomForestRegressor was fitted with feature names
warnings.warn(

我的解答思路和尝试过的方法
我想要达到的结果

您好 前面是这样的
#GRM training
y_test_growth,yhat_growth,pred_growth,r2 = GRM_training_prediction(df4,np.array(pred_LDP).T)

#Store predicted growth rate into a csv file
df5 = pd.DataFrame()
df5['Measured Growth Rate'] = np.array(y_test_growth).reshape(-1)
df5['Predicted Growth Rate'] = np.array(yhat_growth).reshape(-1)
#df5.to_csv('Measured_vs_Predicted_gorwth_rate.csv')

#print r2 scroe
print(r2) #output should be ~0.992

df5.head()

贴个错误也不知道贴全了
大体是X这个变量出问题了
具体什么问题没贴