get_confidence_intervals_within_groups: Get Confidence Intervals Within Groups

View source: R/get_confidence_intervals_within_groups.R

get_confidence_intervals_within_groupsR Documentation

Get Confidence Intervals Within Groups

Description

Get Confidence Intervals Within Groups

Usage

get_confidence_intervals_within_groups(data, x, y, conf_level = 0.95)

Arguments

data

data

x

var 1

y

var 2

conf_level

Confidence level

Value

results

Examples

A <- c(1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1)
B <- c(0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0)
data <- data.frame(A, B)
get_confidence_intervals_within_groups(data, A, B)

uxr documentation built on Dec. 28, 2022, 2:03 a.m.