Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
versae/gradio-blocks-rest-api
TangibleAI
/
mathtext
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
05b4410
mathtext
/
plot_calls.py
cetinca
Update test_api
05b4410
verified
over 2 years ago
raw
Copy download link
history
blame
Safe
196 Bytes
import
matplotlib.pyplot
as
plt
import
pandas
as
pd
df = pd.read_csv(
'call_history.csv'
)
# data loading
print
(df)
df.plot(by=
'endpoint'
, column=
'delay'
, kind=
'box'
, showmeans=
True
)
plt.show()