ValueError:“x”的值不是“data_frame”中列的名称

问题描述 投票:0回答:0

我的代码需要帮助,起初它运行并显示结果但第二次运行它崩溃并向我显示错误,我尝试了一切来修复它但没有。有帮助吗?将不胜感激。

figure = px.scatter(data_frame = data, 
                x="distance",
                y="Time_taken(min)", 
                size="Time_taken(min)", 
                trendline="ols", 
                title = "Relationship Between Distance and Time Taken")
figure.show()

我尝试了一切来修复它,但没有任何效果

python pandas numpy jupyter-notebook plotly
© www.soinside.com 2019 - 2024. All rights reserved.