// dot ngram_parsing_flow.dot -Tpng -o ngram_parsing_flow.png digraph ngramflow { edge [fontsize=10] ; label=<<B><U>gargantext.util.toolchain</U></B><BR/>(ngram extraction flow)>; labelloc="t" ; "extracted_ngrams" -> "grouplist" ; "extracted_ngrams" -> "occs+ti_rank" ; "project stoplist (todo)" -> "stoplist" ; "stoplist" -> "mainlist" ; "occs+ti_rank" -> "mainlist" [label=" TI_RANK_LIMIT"]; "mainlist" -> "coocs" [label=" COOCS_THRESHOLD"] ; "coocs" -> "specificity" ; "specificity" -> "maplist" [label="MAPLIST_LIMIT\nMONOGRAM_PART"]; "mainlist" -> "tfidf" ; "tfidf" -> "explore" [label="doc relations with all map and candidates"]; "maplist" -> "explore" ; "grouplist" -> "occs+ti_rank" ; "grouplist" -> "coocs" ; "grouplist" -> "tfidf" ; }