akc icon indicating copy to clipboard operation
akc copied to clipboard

Response to more suggestions from Richard

Open hope-data-science opened this issue 5 years ago • 3 comments
trafficstars

  1. Control the color of visualization.
  2. Get the word cloud from a simple group.
  3. Classification using word embedding.

hope-data-science avatar Jan 31 '20 00:01 hope-data-science

Response:

  1. Try :
library(akc)

 bibli_data_table %>%
   keyword_clean(id = "id",keyword = "keyword") %>%
   keyword_group(id = "id",keyword = "keyword") %>%
   keyword_network() + ggplot2::scale_fill_viridis_d()

I believe you can add more colors with "scale_fill_" from ggplot2. So I don't use it directly here.

  1. Since now you can get the raw table from the results, just try ggwordcloud and DIY. akc just provides a robust method to get a good-enough-for-publish result. From that package, you can absolutely get more options to adjust. (Still, I will add it when I am free)

  2. This is the scope for larger than version 1.0.0. akc now focuses on grouping based on community detection (as you could find in the logo). Vectorizing would be done outside of akc, but akc should be able to receive word vectors and cluster them automatically. That is in the plan.

hope-data-science avatar Jan 31 '20 00:01 hope-data-science

What is the theory (paper) behind automatic clustering?

snvv avatar Jul 30 '24 14:07 snvv

Community detection in network science.

hope-data-science avatar Aug 02 '24 06:08 hope-data-science