Skip to contents

Uses the results of either group or pair results and prints of the standard message.

Usage

boot_message(eList, type_results, bootOut, type = "pair")

Arguments

eList

named list with at least the Daily, Sample, and INFO dataframes

type_results

data frame returned from either runGroups or runPairs depending on context.

bootOut

List returned from either runPairsBoot or runGroupBoot.

type

Character can be "pair" or "group".

Examples

eList <- EGRET::Choptank_eList
year1 <- 1985
year2 <- 2009

if (FALSE) { # \dontrun{
pairOut_2 <- EGRET::runPairs(eList, 
                             year1, year2, 
                             windowSide = 7)

# For good analysis, bump up nBoot to about 100:
boot_pair_out <- runPairsBoot(eList, pairOut_2, nBoot = 5)
boot_message(eList,
             pairOut_2,
             boot_pair_out)
} # }