Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ from sklearn.cluster import KMeans, DBSCAN
|
|
14 |
import networkx as nx
|
15 |
|
16 |
# Set page configuration
|
17 |
-
st.set_page_config(layout="wide", page_title="
|
18 |
|
19 |
# Initialize session state for multiple expanders
|
20 |
if 'expander_states' not in st.session_state:
|
@@ -211,7 +211,7 @@ def get_download_link_csv(df, filename):
|
|
211 |
href = f'<a href="data:file/csv;base64,{b64}" download="{filename}">Download CSV</a>'
|
212 |
return href
|
213 |
|
214 |
-
|
215 |
@st.cache_data
|
216 |
def analyze_word_lengths(words, chars_list):
|
217 |
word_lengths = [len(chars) for chars in chars_list]
|
|
|
14 |
import networkx as nx
|
15 |
|
16 |
# Set page configuration
|
17 |
+
st.set_page_config(layout="wide", page_title="VM Analyzer", page_icon="π")
|
18 |
|
19 |
# Initialize session state for multiple expanders
|
20 |
if 'expander_states' not in st.session_state:
|
|
|
211 |
href = f'<a href="data:file/csv;base64,{b64}" download="{filename}">Download CSV</a>'
|
212 |
return href
|
213 |
|
214 |
+
|
215 |
@st.cache_data
|
216 |
def analyze_word_lengths(words, chars_list):
|
217 |
word_lengths = [len(chars) for chars in chars_list]
|