bootstrap.band: Get bootstrap confidence bands for attribute selections

View source: R/tcata.R

bootstrap.bandR Documentation

Get bootstrap confidence bands for attribute selections

Description

Get bootstrap confidence bands for TCATA attribute citation rates or TDS attribute dominance rates.

Usage

bootstrap.band(X, boot = 999, alpha = 0.05, return.bias = FALSE)

Arguments

X

data frame of indicator data (with possible values 0 or 1)

boot

number of virtual panels

alpha

alpha level for bootstrap confidence bands

return.bias

indicates whether to return bias associated with bootstrap mean value

Details

Get bootstrap confidence bands for TCATA attribute citation rates or TDS attribute dominance rates.

Value

lcl lower 100(alpha/2)% bootstrap confidence limit

ccl upper 100(1 - alpha/2)% bootstrap confidence limit

bias provided if output.bias = TRUE

Examples

x <- ojtcata[ojtcata$samp == 1 & ojtcata$attribute == "Sweetness",  -c(1:4)]
x.boot.ci <- bootstrap.band(x, boot = 99) # 99 is only for illustrative purposes
x.boot.ci

tempR documentation built on Sept. 8, 2023, 5:19 p.m.

Related to bootstrap.band in tempR...