Learn R Programming

uxr (version 0.2.0)

get_confidence_intervals_within_groups: Get Confidence Intervals Within Groups

Description

Get Confidence Intervals Within Groups

Usage

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

Value

results

Arguments

data

data

x

var 1

y

var 2

conf_level

Confidence level

Examples

Run this code
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)

Run the code above in your browser using DataLab