Description Usage Arguments Details Examples
Check if values are between specified interval
1 2 3 | bw(x, interval)
x %bw% interval
|
x |
vector |
interval |
vector of length 1 or 2, see 'Examples' section |
If second element of interval contains time selection is closed on the left only (a <= x < b
) otherwise selection is closed (a <= x <= b
).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | data( ticks )
# bw is very usefull to filter time series data:
# select single year
ticks[ time %bw% '2016' ]
# select single month
ticks[ time %bw% '2016-05' ]
# select single date
ticks[ time %bw% '2016-05-11' ]
# also works with Date class
ticks[ time %bw% as.Date( '2016-05-11' ) ]
# select single hour
ticks[ time %bw% '2016-05-11 10' ]
# select single minute
ticks[ time %bw% '2016-05-11 10:20' ]
# select single second
ticks[ time %bw% '2016-05-11 10:20:53' ]
# select between two months inclusive
ticks[ time %bw% '2016-05/2016-08' ]
# select from month begin and date
ticks[ time %bw% '2016-05/2016-06-23' ]
# select between two timestamps
ticks[ time %bw% '2016-05-02 09:30/2016-05-02 11:00' ]
# also works with incomplete timestamps
ticks[ time %bw% '2016-05-02 09:30/2016-05-02 11' ]
# select all dates but with time between 09:30 and 16:00
ticks[ time %bw% '09:30/16:00' ]
# also bw can be used as a shortcut for 'a <= x & x <= b' for non-'POSIXct' classes:
# numeric
15:25 %bw% c( 10, 20 )
# character
letters %bw% c( 'a', 'f' )
# dates
Sys.Date() %bw% ( Sys.Date() + c( -10, 10 ) )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.