akc
akc copied to clipboard
Response to more suggestions from Richard
- Control the color of visualization.
- Get the word cloud from a simple group.
- Classification using word embedding.
Response:
- 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.
-
Since now you can get the raw table from the results, just try
ggwordcloudand DIY.akcjust 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) -
This is the scope for larger than version 1.0.0.
akcnow focuses on grouping based on community detection (as you could find in the logo). Vectorizing would be done outside ofakc, butakcshould be able to receive word vectors and cluster them automatically. That is in the plan.
What is the theory (paper) behind automatic clustering?
Community detection in network science.