Source code for proteobench.modules.template.plot
import pandas as pd
import plotly.express as px
import plotly.figure_factory as ff
import plotly.graph_objects as go
import streamlit as st
from streamlit_plotly_events import plotly_events
[docs]def plot_bench1(result_df):
"""Plot results with Plotly Express."""
# TODO create (plotly) figure object
raise NotImplementedError()
fig = go.Figure()
return fig
[docs]def plot_bench2(result_df):
"""Plot results with Plotly Express."""
# TODO create (plotly) figure object
raise NotImplementedError()
fig = go.Figure()
return fig