|
import pandas as pd |
|
import gradio as gr |
|
from typing import List |
|
import plotly.express as px |
|
from tabs.tool_win import sort_key |
|
|
|
|
|
HEIGHT = 600 |
|
WIDTH = 1000 |
|
|
|
|
|
def get_error_data_overall_by_market(error_df: pd.DataFrame) -> pd.DataFrame: |
|
"""Gets the error data for the given tools and calculates the error percentage.""" |
|
error_total = ( |
|
error_df.groupby(["request_month_year_week", "market_creator"], sort=False) |
|
.agg({"total_requests": "sum", "1": "sum", "0": "sum"}) |
|
.reset_index() |
|
) |
|
error_total["error_perc"] = (error_total["1"] / error_total["total_requests"]) * 100 |
|
error_total.columns = error_total.columns.astype(str) |
|
error_total["error_perc"] = error_total["error_perc"].apply(lambda x: round(x, 4)) |
|
return error_total |
|
|
|
|
|
def plot_error_data_by_market(error_all_df: pd.DataFrame) -> gr.Plot: |
|
|
|
|
|
sorted_categories = sorted( |
|
error_all_df["request_month_year_week"].unique(), key=sort_key |
|
) |
|
|
|
error_all_df["request_month_year_week"] = pd.Categorical( |
|
error_all_df["request_month_year_week"], |
|
categories=sorted_categories, |
|
ordered=True, |
|
) |
|
|
|
|
|
error_all_df = error_all_df.sort_values("request_month_year_week") |
|
|
|
fig = px.bar( |
|
error_all_df, |
|
x="request_month_year_week", |
|
y="error_perc", |
|
color="market_creator", |
|
barmode="group", |
|
color_discrete_sequence=["purple", "goldenrod", "darkgreen"], |
|
category_orders={ |
|
"market_creator": ["pearl", "quickstart", "all"], |
|
"request_month_year_week": sorted_categories, |
|
}, |
|
) |
|
fig.update_layout( |
|
xaxis_title="Week", |
|
yaxis_title="Error Percentage", |
|
legend=dict(yanchor="top", y=0.5), |
|
) |
|
fig.update_layout(width=WIDTH, height=HEIGHT) |
|
fig.update_xaxes(tickformat="%b %d\n%Y") |
|
return gr.Plot(value=fig) |
|
|
|
|
|
def plot_tool_error_data_by_market(error_raw: pd.DataFrame, tool: str) -> gr.Plot: |
|
error_df = error_raw.copy(deep=True) |
|
error_tool = error_df[error_df["tool"] == tool] |
|
error_tool.columns = error_tool.columns.astype(str) |
|
error_tool["error_perc"] = error_tool["error_perc"].apply(lambda x: round(x, 4)) |
|
|
|
|
|
sorted_categories = sorted( |
|
error_tool["request_month_year_week"].unique(), key=sort_key |
|
) |
|
|
|
error_tool["request_month_year_week"] = pd.Categorical( |
|
error_tool["request_month_year_week"], |
|
categories=sorted_categories, |
|
ordered=True, |
|
) |
|
|
|
|
|
error_tool = error_tool.sort_values("request_month_year_week") |
|
|
|
fig = px.bar( |
|
error_tool, |
|
x="request_month_year_week", |
|
y="error_perc", |
|
color="market_creator", |
|
barmode="group", |
|
color_discrete_sequence=["purple", "goldenrod", "darkgreen"], |
|
category_orders={ |
|
"market_creator": ["pearl", "quickstart", "all"], |
|
"request_month_year_week": sorted_categories, |
|
}, |
|
) |
|
fig.update_layout( |
|
xaxis_title="Week", |
|
yaxis_title="Error Percentage %", |
|
legend=dict(yanchor="top", y=0.5), |
|
) |
|
fig.update_layout(width=WIDTH, height=HEIGHT) |
|
fig.update_xaxes(tickformat="%b %d\n%Y") |
|
return gr.Plot(value=fig) |
|
|
|
|
|
def plot_week_error_data_by_market(error_df: pd.DataFrame, week: str) -> gr.Plot: |
|
error_week = error_df[error_df["request_month_year_week"] == week] |
|
error_week.columns = error_week.columns.astype(str) |
|
error_week["error_perc"] = error_week["error_perc"].apply(lambda x: round(x, 4)) |
|
|
|
fig = px.bar( |
|
error_week, |
|
x="tool", |
|
y="error_perc", |
|
color="market_creator", |
|
barmode="group", |
|
color_discrete_sequence=["purple", "goldenrod", "darkgreen"], |
|
category_orders={ |
|
"market_creator": ["pearl", "quickstart", "all"], |
|
}, |
|
) |
|
fig.update_layout( |
|
xaxis_title="Tool", |
|
yaxis_title="Error Percentage %", |
|
legend=dict(yanchor="top", y=0.5), |
|
) |
|
fig.update_layout(width=WIDTH, height=HEIGHT) |
|
fig.update_xaxes(tickformat="%b %d\n%Y") |
|
return gr.Plot(value=fig) |
|
|
|
|
|
def plot_weekly_errors_by_mech(errors_by_mech: pd.DataFrame) -> gr.Plot: |
|
"""Function to plot the weekly errors by mech address""" |
|
fig = px.bar( |
|
errors_by_mech, |
|
x="request_month_year_week", |
|
y="requests", |
|
color="error_cat", |
|
barmode="group", |
|
color_discrete_sequence=["green", "orange"], |
|
labels={ |
|
"requestmonthyearweek": "Month-Year-Week", |
|
"requests": "Number of Requests", |
|
"error_cat": "Error Category", |
|
"errors_percentage": "Percentage", |
|
}, |
|
text="errors_percentage", |
|
height=600, |
|
width=800, |
|
facet_col="mech_address", |
|
facet_col_spacing=0.5, |
|
facet_col_wrap=1, |
|
) |
|
fig.update_traces( |
|
texttemplate="%{y} (%{text:.2f}%)", |
|
textposition="outside", |
|
textangle=0, |
|
cliponaxis=False, |
|
) |
|
fig.update_xaxes(tickformat="%b %d\n%Y") |
|
return gr.Plot(value=fig) |
|
|