Learn R Programming

CSHShydRology (version 1.4.2)

ch_tr_signif: ch_tr_signif()

Description

Convert pvalues to integers 1 for NS and 2 for significant using a pvalue that can be set (default is 0.05)

Usage

ch_tr_signif(x, pvalue = 0.05)

Value

Returns an array of indices 1 and 2, where 1 is NS and 2 is significant

Arguments

x

an array of pvalues from statistical test

pvalue

critical value, default is 0.05

Author

Paul Whitfield

Examples

Run this code
 sin <- c( -0.052, 0.34, 0.012, -.033, -0.55)
 sout <- ch_tr_signif(sin)
 # 1 1 2 2 1

Run the code above in your browser using DataLab