rdsav/compare_time_periods:

Usage Arguments Examples

Usage

1
compare_time_periods(desired_time_period, data_time_period)

Arguments

desired_time_period
data_time_period

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (desired_time_period, data_time_period) 
{
    out = FALSE
    if (desired_time_period == yearly_label) 
        out = TRUE
    else if (desired_time_period == subyearly_label) {
        if (data_time_period != yearly_label) 
            out = TRUE
    }
    else if (desired_time_period == daily_label) {
        if (data_time_period == subdaily_label | data_time_period == 
            daily_label) 
            out = TRUE
    }
    else if (desired_time_period == subdaily_label) {
        if (data_time_period == subdaily_label) 
            out = TRUE
    }
  }

StatisticalServicesCentre/ClimateObject documentation built on May 9, 2019, 2 p.m.