cowmesh-network-test/scatter_plot.py

11 lines
372 B
Python

import plotly.express as px
import pandas as pd
csv_path = "/home/notplants/computer/projects/janastu-mesh/cowmesh-network-test/iruway-data/results.csv"
df = pd.read_csv(csv_path)
# print(df)
fig = px.scatter(df, x='date', y='mbps', color='test')
# fig.show()
fig.write_html("/home/notplants/computer/projects/janastu-mesh/cowmesh-network-test/iruway-data/plotly.html")