Skip to content

Commit

Permalink
before v 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BriceNocenti committed Mar 4, 2024
1 parent dab28d0 commit 0192e91
Show file tree
Hide file tree
Showing 27 changed files with 5,367 additions and 842 deletions.
3 changes: 2 additions & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
docs
^\.github$
^cran-comments\.md$
^CRAN-RELEASE$
^CRAN-RELEASE$
^CRAN-SUBMISSION$
3 changes: 3 additions & 0 deletions CRAN-SUBMISSION
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Version: 0.2.3
Date: 2024-01-24 16:40:13 UTC
SHA: dab28d08ba72e4b4dbfc9356d806cdfbcc9f418a
27 changes: 16 additions & 11 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: ggfacto
Title: Graphs for Correspondence Analysis
Version: 0.2.3
Version: 0.3.0
Authors@R:
person(given = "Brice",
family = "Nocenti",
Expand All @@ -11,24 +11,23 @@ Description: Readable, complete and pretty graphs for correspondence analysis ma
informations at mouse hover. The interest is not mainly visual but statistical:
it helps the reader to keep in mind the data contained in the cross-table or Burt
table while reading the correspondence analysis, thus preventing over-interpretation.
Graphs are made with 'ggplot2', which means that you can use the + syntax to
manually add as many graphical pieces you want, or change theme elements.
Most graphs are made with 'ggplot2', which means that you can use the + syntax to
manually add as many graphical pieces you want, or change theme elements. 3D
graphs are made with 'plotly'.
URL: https://github.com/BriceNocenti/ggfacto
BugReports: https://github.com/BriceNocenti/ggfacto/issues
License: GPL (>= 3)
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.3.0
RoxygenNote: 7.3.1
Imports:
FactoMineR (>= 2.0.0),
ggiraph (>= 0.8.2),
ggplot2 (>= 3.0.0),
widgetframe (>= 0.3.0),
dplyr (>= 1.0.0),
forcats (>= 0.5.0),
purrr (>= 0.3.0),
rlang (>= 0.4.0),
stringi (>= 1.4.6),
stringr (>= 1.4.0),
tibble (>= 3.0.0),
tidyr (>= 1.0.0),
Expand All @@ -37,11 +36,17 @@ Imports:
ggrepel (>= 0.9.0),
gridExtra (>= 2.0),
tabxplor (>= 1.0.3),
stats (>= 4.0.0),
grDevices (>= 4.0.0),
htmlwidgets (>= 1.4.0),
withr (>= 2.0.0),
magrittr (>= 1.5.0)
magrittr (>= 1.5.0),
data.table (>= 1.12.0),
ggforce (>= 0.4.0)
Suggests:
widgetframe (>= 0.3.0),
htmlwidgets (>= 1.4.0),
finalfit (>= 1.0.0),
kableExtra (>= 1.3.0)
kableExtra (>= 1.3.0),
plotly (>= 4.1.0),
stats (>= 4.0.0),
grDevices (>= 4.0.0),
stringi (>= 1.4.6),
scales (>= 1.1.0)
8 changes: 8 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
# Generated by roxygen2: do not edit by hand

export("%>%")
export(HCPC_tab)
export(MCA2)
export(benzecri_mrv)
export(ggca)
export(ggi)
export(ggmca)
export(ggmca_3d)
export(ggmca_data)
export(ggmca_initial_dims)
export(ggmca_plot)
export(ggmca_with_base_ref)
export(ggpca_3d)
export(ggpca_cor_circle)
export(ggsave2)
export(material_colors_dark)
export(material_colors_light)
export(mca_interpret)
export(pca_interpret)
export(pers_or_plot)
export(theme_facto)
import(data.table)
importFrom(magrittr,"%>%")
importFrom(rlang,.data)
17 changes: 17 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@

# ggfacto 0.3.0

## Added :
* New fonction : `HCPC_tab()`
* New fonction : `ggmca_initial_dims()`
* New fonction : `ggmca_with_base_ref()`
* New fonction : `ggmca_3d()`
* New fonction : `pca_interpret()`
* New fonction : `ggpca_cor_circle()`
* New fonction : `ggpca_3d()`

## Bug correction
* `ggmca()` can now properly color profiles of answer with `cah` (HCPC clusters) levels.


# ggfacto 0.2.3

## Added :
Expand All @@ -7,6 +23,7 @@
* `mca_interpret` was not working with `MCA(excl = )`
* in `ggmca`, profiles of answers were plain wrong (because of the unanticipated results of a change in code)


# ggfacto 0.2.2

* First public version of ggfacto.
Loading

0 comments on commit 0192e91

Please sign in to comment.