Skip to content

Commit

Permalink
New function: cormatrix_to_excel() (#294)
Browse files Browse the repository at this point in the history
* cormatrix_to_excel

* add tests, fix check spelling

* styler, lints,  skip_if_not_or_load_if_installed("openxlsx2")

* suppressWarnings

* suppressWarnings in examples too

* document examples

* fix parse error in file 'lines'

* remove unnecessary p_adjust argument, styler

* Add Rémi as author

---------

Co-authored-by: Brenton M. Wiernik <[email protected]>
  • Loading branch information
rempsyc and bwiernik authored Aug 21, 2023
1 parent ae9257a commit d5eccba
Show file tree
Hide file tree
Showing 8 changed files with 571 additions and 2 deletions.
10 changes: 8 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: correlation
Title: Methods for Correlation Analysis
Version: 0.8.4
Version: 0.8.5
Authors@R:
c(person(given = "Dominique",
family = "Makowski",
Expand All @@ -28,6 +28,11 @@ Authors@R:
role = "aut",
email = "[email protected]",
comment = c(ORCID = "0000-0002-4287-4801", Twitter = "@mattansb")),
person(given = "Rémi",
family = "Thériault",
role = c("aut"),
email = "[email protected]",
comment = c(ORCID = "0000-0003-4315-6788", Twitter = "@rempsyc")),
person(given = "Mark",
family = "White",
email = "[email protected]",
Expand Down Expand Up @@ -77,7 +82,8 @@ Suggests:
testthat (>= 3.1.7),
tidygraph,
wdm,
WRS2
WRS2,
openxlsx2
VignetteBuilder:
knitr
Encoding: UTF-8
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export(cor_to_cov)
export(cor_to_p)
export(cor_to_pcor)
export(cor_to_spcor)
export(cormatrix_to_excel)
export(correlation)
export(display)
export(distance_mahalanobis)
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# correlation 0.8.5

- New `cormatrix_to_excel()` function for exporting correlation matrices to Excel with color formatting.

# correlation 0.8.4

- Minor improvements and code revisions due to changes in other packages.
Expand Down
Loading

0 comments on commit d5eccba

Please sign in to comment.