rainette (development version)
- Add
colorsargument torainette_plot()to allow to specify custom colors for clusters (#37, thanks @lvaudor)
rainette 0.3.1
CRAN release: 2023-03-17
- Replace call to
palette.colors()with manual colors vector to ensure compatibility with R 3.6 (#11) - Fix dendrogram not displayed when show_na_title = FALSE
rainette 0.3.0
CRAN release: 2022-02-18
New features
Rework of the double classification computation :
- New
fullargument torainette2(). IfTRUE(default, same behavior as previous versions), all crossings between groups of the two single classifications are taken into account to find the best partition. IfFALSE, only the crossings with maximal associations are kept. - New
parallelargument torainette2()to compute partitions withmclapply(FALSEby default, won’t work on Windows, uses more RAM) - Global optimization and speed up of
rainette2()computations, with added progress bars to better estimate long runs
Documentation
- Improved french vignette “description des algorithmes”
- New english vignette “algorithms description”
- Reworked french and english introduction vignettes
Deprecated features
- The wordcloud plots will be deprecated in a near future. A warning has been added to
rainette_plot()andrainette2_plot()if they are called withtype = "cloud".
Other
- Add
show_na_title,cluster_labelandkeyness_plot_xlabarguments torainette_plot()to customize graphics output - Fix warnings in Font Awesome icon names
rainette 0.2.1
CRAN release: 2021-10-06
- Add option to show merged segments in document browser
- Fix warning and error in
rainette_explorandrainette2_explorwhen a cluster dfm is empty - Fix error when the dfm contains empty string as feature
rainette 0.2.0
CRAN release: 2021-06-25
Important and breaking changes
-
min_uc_size,uc_size1anduc_size2arguments torainetteandrainette2have been renamed tomin_segment_size,min_segment_size1andmin_segment_size2. - The default value of
min_segment_sizeinrainetteis now0, which means that no merging is done between segments by default. Results could then be different from previous package versions whenmin_uc_sizewas not specified. - Important bugfix : merging of segments based on
min_segment_sizewas not handled correctly in the previous versions regarding the segment sources, as segments from different documents could be merged together. This should now be fixed.
New features
- A new graphical interface to browse cluster documents has been added to
rainette_explorandrainette2_explor. - New function
clusters_by_doc_tablewhich gives the number of segments of each cluster for each document. - New function
docs_by_cluster_tablewhich gives, for each cluster, the number of documents with at least one segment in this cluster. -
split_segmentsshould now be about 4 times faster. - Terms frequencies and documents proportions statistics have been added to the explor interfaces.
Other
- When
rainetteis called withmin_segment_size> 0, adoc_idargument must be given which is the name of adtmdocvar identifying the segments source. If the corpus has been produced bysplit_segments, the addedsegment_sourcedocvar is used by default. - Color palette for clusters changed to “Tableau 10”.
- Negative keyness values are not shown by default anymore in
rainette_explor,rainette2_explor,rainette_plotandrainette2_plot. - Wordcloud plots have been removed from explor interfaces.
- A warning is displayed when
min_split_members< 3. - If
rainette_exploris called on arainette2results object,rainette2_exploris launched automatically.
rainette 0.1.3
CRAN release: 2021-05-11
- Parallel computing in split_segments has been removed
- Fix potential name conflicts in
rainette_explor - Compatibility with quanteda v3 (thanks @kbenoit)
