Spaces:
Runtime error
Runtime error
File size: 667 Bytes
5e55a06 2fdfcc2 5e55a06 2fdfcc2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import streamlit as st
from module.__custom__ import *
theme = "Settings"
page_genres = ['full_audio', 'full_controller_support', 'not_full_audio', 'not_full_controller']
add_genres = [['not_full_audio', 'full_audio'], ['not_full_controller', 'full_controller_support'] ]
labels = ['not_full_controller', 'full_controller_support']
labels_2 = ['not_full_audio', 'full_audio']
# ### adding single-player feature ###
for add in add_genres:
add_opp_features(add)
exec_page('🎧', theme, page_genres)
tab1, tab2= st.tabs(['Controller support ratio', 'Full audio ratio'])
with tab1:
plot3_box(theme, labels)
with tab2:
plot3_box(theme, labels_2)
|