dhanikitkat commited on
Commit
46c2c8d
·
1 Parent(s): 7b25db5

update req

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -176,7 +176,7 @@ def process_file(file, slank_formal_df):
176
 
177
  # Negative sentiment and angry or sad emotion word cloud
178
  negative_angry_sad_text = ' '.join(df[(df['Sentiment'] == 'negative') & (df['Emotion'].isin(['marah', 'sedih']))]['Cleaned Content'].dropna())
179
- generate_wordcloud(negative_angry_sad_text, font_path, 'Negative Sentiment & Angry or stSad Emotion Word Cloud', 'Reds')
180
 
181
  # Word frequency
182
  word_freq = pd.Series(' '.join(df['Cleaned Content'].dropna()).split()).value_counts()
 
176
 
177
  # Negative sentiment and angry or sad emotion word cloud
178
  negative_angry_sad_text = ' '.join(df[(df['Sentiment'] == 'negative') & (df['Emotion'].isin(['marah', 'sedih']))]['Cleaned Content'].dropna())
179
+ generate_wordcloud(negative_angry_sad_text, font_path, 'Negative Sentiment & Angry or Sad Emotion Word Cloud', 'Reds')
180
 
181
  # Word frequency
182
  word_freq = pd.Series(' '.join(df['Cleaned Content'].dropna()).split()).value_counts()