forked from kassambara/rstatix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
109 lines (109 loc) · 2.99 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
Package: rstatix
Type: Package
Title: Pipe-Friendly Framework for Basic Statistical Tests
Version: 0.3.1.999
Authors@R: c(
person("Alboukadel", "Kassambara", role = c("aut", "cre"), email = "[email protected]"))
Description: Provides a simple and intuitive pipe-friendly framework, coherent with the 'tidyverse' design philosophy,
for performing basic statistical tests, including t-test, Wilcoxon test, ANOVA, Kruskal-Wallis and correlation analyses.
The output of each test is automatically transformed into a tidy data frame to facilitate visualization.
Additional functions are available for reshaping, reordering, manipulating and visualizing correlation matrix.
Functions are also included to facilitate the analysis of factorial experiments, including purely 'within-Ss' designs
(repeated measures), purely 'between-Ss' designs, and mixed 'within-and-between-Ss' designs.
It's also possible to compute several effect size metrics, including "eta squared" for ANOVA, "Cohen's d" for t-test and
'Cramer V' for the association between categorical variables.
The package contains helper functions for identifying univariate and multivariate outliers, assessing normality and homogeneity of variances.
License: GPL-2
LazyData: TRUE
Encoding: UTF-8
Depends:
R (>= 3.3.0)
Imports:
stats,
utils,
tidyr (>= 1.0.0),
purrr,
broom,
rlang (>= 0.3.1),
tibble,
dplyr (>= 0.7.1),
magrittr,
corrplot,
tidyselect,
car
Suggests:
knitr,
rmarkdown,
ggpubr,
graphics,
emmeans,
coin,
boot,
testthat,
spelling
URL: https://rpkgs.datanovia.com/rstatix/
BugReports: https://github.com/kassambara/rstatix/issues
RoxygenNote: 6.1.1
Collate:
'utilities.R'
'add_significance.R'
'adjust_pvalue.R'
'factorial_design.R'
'utilities_two_sample_test.R'
'anova_summary.R'
'anova_test.R'
'as_cor_mat.R'
'binom_test.R'
'box_m.R'
'chisq_test.R'
'cochran_qtest.R'
'cohens_d.R'
'cor_as_symbols.R'
'replace_triangle.R'
'pull_triangle.R'
'cor_mark_significant.R'
'cor_mat.R'
'cor_plot.R'
'cor_reorder.R'
'cor_reshape.R'
'cor_select.R'
'cor_test.R'
'counts_to_cases.R'
'cramer_v.R'
'doo.R'
't_test.R'
'dunn_test.R'
'emmeans_test.R'
'eta_squared.R'
'factors.R'
'fisher_test.R'
'freq_table.R'
'friedman_test.R'
'friedman_effesize.R'
'games_howell_test.R'
'get_comparisons.R'
'get_manova_table.R'
'get_mode.R'
'get_pvalue_position.R'
'get_summary_stats.R'
'get_test_label.R'
'kruskal_effesize.R'
'kruskal_test.R'
'levene_test.R'
'mahalanobis_distance.R'
'make_clean_names.R'
'mcnemar_test.R'
'multinom_test.R'
'outliers.R'
'p_value.R'
'prop_test.R'
'prop_trend_test.R'
'reexports.R'
'sample_n_by.R'
'shapiro_test.R'
'sign_test.R'
'tukey_hsd.R'
'welch_anova_test.R'
'wilcox_effsize.R'
'wilcox_test.R'
Language: en-US