t_from_summ: t-Test from Summary Statistics

Description Usage Arguments

Description

This is the t.test fucntion from the stats package adapted to work from summary statistics instead of vectors.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
t_from_summ(
  m1,
  n1,
  s1,
  m2 = NULL,
  n2 = NULL,
  s2 = NULL,
  alternative = c("two.sided", "less", "greater"),
  mu = 0,
  paired = FALSE,
  var.equal = FALSE,
  conf.level = 0.95,
  ...
)

Arguments

m1

mean of x

n1

number of observations in x

s1

standard deviation of x

m2

mean of y

n2

number of observations in y

s2

standard deviation of y


alitvak3/a3personal documentation built on April 6, 2021, 4:53 a.m.