Learn R Programming

dabestr (version 0.2.5)

print.dabest: Print a `dabest` object

Description

Print a `dabest` object

Usage

# S3 method for dabest
print(x, ..., signif_digits = 3)

Arguments

x

A dabest object, generated by the function of the same name.

...

Signature for S3 generic function.

signif_digits

integer, default 3. All numerical values in the printout will be rounded to this many significant digits.

Value

A summary of all the relevant effect sizes computed.

Examples

Run this code
# NOT RUN {
# Performing unpaired (two independent groups) analysis.
unpaired_mean_diff <- dabest(iris, Species, Petal.Width,
                             idx = c("setosa", "versicolor"),
                             paired = FALSE)

# Display the results in a user-friendly format.
print(unpaired_mean_diff)

# }

Run the code above in your browser using DataLab