CoolFace
Apppublic

smrup/Food-Delivery-Time-Prediction-using-Machine-Learning

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
visualize.py12 linesDownload Raw Back to root
1# visualize.py2import plotly.express as px3 4def plot_distance_vs_time(df):5    fig = px.scatter(data_frame=df, 6                     x="distance",7                     y="Time_taken(min)", 8                     size="Time_taken(min)", 9                     trendline="ols", 10                     title="Relationship Between Distance and Time Taken")11    fig.show()12