R/thru.R

Defines functions thru `%thru%`

Documented in thru

thru<- function(x,inicial,final){
  (inicial<=x & x<=final) & !is.na(x)
}
`%thru%`<- function(x,y) {
  thru(x,y[1],y[2])
}
Aulide81/estadisticos documentation built on Oct. 10, 2019, 3:47 p.m.