xtlyxt commited on
Commit
dc1e98e
·
verified ·
1 Parent(s): 6eee572

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -103,19 +103,18 @@ if st.button("Generate DataFrame"):
103
  plt.xlabel('Emotion Categories')
104
  plt.ylabel('Data Points')
105
  st.pyplot(plt)
106
-
107
  # Normalize the data for better visualization
108
  df_normalized = (df_emotions.iloc[:, :7] - df_emotions.iloc[:, :7].min()) / (df_emotions.iloc[:, :7].max() - df_emotions.iloc[:, :7].min())
109
-
110
 
111
  # Plotting the parallel coordinates plot
112
  plt.figure(figsize=(12, 6))
113
- parallel_coordinates(df_normalized, class_column=df_normalized.columns[-1], colormap=plt.get_cmap("Set2"))
114
  plt.title('Parallel Coordinates Plot for Emotions')
115
  plt.xlabel('Emotion Categories')
116
  plt.ylabel('Normalized Scores')
117
- st.pyplot(plt)
118
-
119
  # Optional: Save the DataFrame to a CSV file
120
  df_emotions.to_csv('emotion_scores.csv', index=False)
121
  st.success('DataFrame generated and saved as emotion_scores.csv')
 
103
  plt.xlabel('Emotion Categories')
104
  plt.ylabel('Data Points')
105
  st.pyplot(plt)
106
+
107
  # Normalize the data for better visualization
108
  df_normalized = (df_emotions.iloc[:, :7] - df_emotions.iloc[:, :7].min()) / (df_emotions.iloc[:, :7].max() - df_emotions.iloc[:, :7].min())
 
109
 
110
  # Plotting the parallel coordinates plot
111
  plt.figure(figsize=(12, 6))
112
+ parallel_coordinates(df_normalized, class_column=None, colormap=plt.get_cmap("Set2"))
113
  plt.title('Parallel Coordinates Plot for Emotions')
114
  plt.xlabel('Emotion Categories')
115
  plt.ylabel('Normalized Scores')
116
+ st.pyplot(plt)
117
+
118
  # Optional: Save the DataFrame to a CSV file
119
  df_emotions.to_csv('emotion_scores.csv', index=False)
120
  st.success('DataFrame generated and saved as emotion_scores.csv')