Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -60,7 +60,7 @@ if uploaded_file and st.button("Analyze File"):
|
|
60 |
# 🔵 Pie Chart for Overall Stats
|
61 |
st.subheader("🧁 Overall Amino Acid Composition (Pie Chart)")
|
62 |
|
63 |
-
fig, ax = plt.subplots(figsize=(
|
64 |
labels = list(overall_percentage.keys())
|
65 |
sizes = list(overall_percentage.values())
|
66 |
|
|
|
60 |
# 🔵 Pie Chart for Overall Stats
|
61 |
st.subheader("🧁 Overall Amino Acid Composition (Pie Chart)")
|
62 |
|
63 |
+
fig, ax = plt.subplots(figsize=(9, 9)) # 50% of typical view size
|
64 |
labels = list(overall_percentage.keys())
|
65 |
sizes = list(overall_percentage.values())
|
66 |
|