statsExpressions (version 0.6.2)

expr_anova_nonparametric: Making text expression for non-parametric ANOVA.

Description

Making text expression for non-parametric ANOVA.

Usage

expr_anova_nonparametric(
  data,
  x,
  y,
  subject.id = NULL,
  paired = FALSE,
  k = 2L,
  conf.level = 0.95,
  conf.type = "perc",
  nboot = 100L,
  output = "expression",
  ...
)

Arguments

data

A dataframe (or a tibble) from which variables specified are to be taken. A matrix or tables will not be accepted.

x

The grouping variable from the dataframe data.

y

The response (a.k.a. outcome or dependent) variable from the dataframe data.

subject.id

In case of repeated measures design (paired = TRUE, i.e.), this argument specifies the subject or repeated measures id. Note that if this argument is NULL (which is the default), the function assumes that the data has already been sorted by such an id by the user and creates an internal identifier. So if your data is not sorted and you leave this argument unspecified, the results can be inaccurate.

paired

Logical that decides whether the experimental design is repeated measures/within-subjects or between-subjects. The default is FALSE.

k

Number of digits after decimal point (should be an integer) (Default: k = 2L).

conf.level

Scalar between 0 and 1. If unspecified, the defaults return 95% confidence/credible intervals (0.95).

conf.type

A vector of character strings representing the type of intervals required. The value should be any subset of the values "norm", "basic", "perc", "bca". For more, see ?boot::boot.ci.

nboot

Number of bootstrap samples for computing confidence interval for the effect size (Default: 100).

output

If "expression", will return expression with statistical details, while "dataframe" will return a dataframe containing the results.

...

Currently ignored.

Value

For more details, see- https://indrajeetpatil.github.io/statsExpressions/articles/stats_details.html

Details

For paired designs, the effect size is Kendall's coefficient of concordance (W), while for between-subjects designs, the effect size is epsilon-squared (for more, see ?rcompanion::epsilonSquared and ?rcompanion::kendallW).

Examples

Run this code
# NOT RUN {
# setup
set.seed(123)
library(statsExpressions)

# -------------- within-subjects design --------------------------------

# creating the expression
expr_anova_nonparametric(
  data = bugs_long,
  x = condition,
  y = desire,
  paired = TRUE,
  conf.level = 0.99,
  k = 2
)

# -------------- between-subjects design --------------------------------

expr_anova_nonparametric(
  data = ggplot2::msleep,
  x = vore,
  y = sleep_rem,
  paired = FALSE,
  conf.level = 0.99,
  conf.type = "perc"
)
# }

Run the code above in your browser using DataLab