Skip to content

Commit

Permalink
[2023.8]
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce committed Aug 7, 2023
1 parent ac65878 commit 8dbfffa
Show file tree
Hide file tree
Showing 54 changed files with 1,164 additions and 938 deletions.
3 changes: 1 addition & 2 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@ note
^.*\.Rproj$
^\.Rproj\.user$
^\.travis\.yml$
^_pkgdown\.yml$
^cran-comments\.md$
^LICENSE$
^CRAN-RELEASE$
^CRAN-SUBMISSION$
^_pkgdown\.yml$
^docs$
^pkgdown$
^\.github$
^codecov\.yml$
39 changes: 19 additions & 20 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,33 +1,32 @@
Package: bruceR
Title: Broadly Useful Convenient and Efficient R Functions
Version: 0.8.11-1
Date: 2023-05-05
Version: 2023.8
Date: 2023-08-08
Authors@R:
c(person(given = "Han-Wu-Shuang",
family = "Bao",
role = c("aut", "cre"),
email = "baohws@foxmail.com",
comment = c(ORCID = "0000-0003-3043-710X")))
Author: Han-Wu-Shuang Bao [aut, cre]
Maintainer: Han-Wu-Shuang Bao <baohws@foxmail.com>
Description:
Broadly useful convenient and efficient R functions
that bring users concise and elegant R data analyses.
This package includes easy-to-use functions for
(1) basic R programming
(e.g., set working directory to the path of currently opened file;
import/export data from/to files in any format;
print tables to Microsoft Word);
(2) multivariate computation
(e.g., compute scale sums/means/... with reverse scoring);
(3) reliability analyses and factor analyses;
(4) descriptive statistics and correlation analyses;
(5) t-test, multi-factor analysis of variance (ANOVA),
simple-effect analysis, and post-hoc multiple comparison;
(6) tidy report of statistical models
(to R Console and Microsoft Word);
(7) mediation and moderation analyses (PROCESS);
and (8) additional toolbox for statistics and graphics.
Broadly useful convenient and efficient R functions
that bring users concise and elegant R data analyses.
This package includes easy-to-use functions for
(1) basic R programming
(e.g., set working directory to the path of currently opened file;
import/export data from/to files in any format;
print tables to Microsoft Word);
(2) multivariate computation
(e.g., compute scale sums/means/... with reverse scoring);
(3) reliability analyses and factor analyses;
(4) descriptive statistics and correlation analyses;
(5) t-test, multi-factor analysis of variance (ANOVA),
simple-effect analysis, and post-hoc multiple comparison;
(6) tidy report of statistical models
(to R Console and Microsoft Word);
(7) mediation and moderation analyses (PROCESS);
and (8) additional toolbox for statistics and graphics.
License: GPL-3
Encoding: UTF-8
LazyData: true
Expand Down
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export(added)
export(cc)
export(ccf_plot)
export(cor_diff)
export(cor_multilevel)
export(dtime)
export(export)
export(formatF)
Expand Down Expand Up @@ -88,6 +89,7 @@ importFrom(dplyr,across)
importFrom(dplyr,group_by)
importFrom(dplyr,left_join)
importFrom(dplyr,mutate)
importFrom(dplyr,rename)
importFrom(dplyr,select)
importFrom(dplyr,summarise)
importFrom(dplyr,sym)
Expand Down
12 changes: 11 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
**Please check the [latest news (change log)](https://psychbruce.github.io/bruceR/news/index.html) and keep this package updated.**

# bruceR 0.9.0 (ongoing...)
# bruceR 2023.8

## New Features

- New function `cor_multilevel()`: Multilevel correlations (within-level and between-level).

## Major Changes

- Now use "YYYY.M" as package version number.
- Improved `Corr()`: Now it uses `ggplot2` to produce correlation plot.
- Deprecated the argument `nsmall` for all functions. Now always use `digits` instead. (Both were acceptable in former versions.)

## Bug Fixes

Expand Down
Loading

0 comments on commit 8dbfffa

Please sign in to comment.