krishaamer commited on
Commit
d1f1fb3
·
1 Parent(s): 45c8407

Disable wordcloud for now

Browse files
Files changed (1) hide show
  1. page_personas.py +1 -1
page_personas.py CHANGED
@@ -54,7 +54,7 @@ def show(df):
54
  df_cluster = df_clustered[df_clustered['Cluster'] == cluster_id]
55
  plot_scatterplot(df_cluster, pca, cluster_centers, chinese_font, cluster_palette, cluster_names, cluster_descriptions, title=f'Clustered Survey Responses')
56
  plot_loadings_for_cluster(cluster_id, df_cluster, cluster_names, chinese_font)
57
- plot_wordcloud(pca, cluster_id, cluster_names, chinese_font)
58
  pca_biplot(df_cluster, cluster_names, chinese_font)
59
  new_biplot(df, cluster_id, cluster_names, chinese_font)
60
 
 
54
  df_cluster = df_clustered[df_clustered['Cluster'] == cluster_id]
55
  plot_scatterplot(df_cluster, pca, cluster_centers, chinese_font, cluster_palette, cluster_names, cluster_descriptions, title=f'Clustered Survey Responses')
56
  plot_loadings_for_cluster(cluster_id, df_cluster, cluster_names, chinese_font)
57
+ #plot_wordcloud(pca, cluster_id, cluster_names, chinese_font)
58
  pca_biplot(df_cluster, cluster_names, chinese_font)
59
  new_biplot(df, cluster_id, cluster_names, chinese_font)
60