Description Usage Arguments Value Note Author(s) See Also Examples
Selects data for a given visual meteor dataset and specified limiting magnitude or interval of magnitudes.
1 | filter.mag(data,mag.low=1,mag.up = 8)
|
data |
data frame consisting of visual meteor rate data. |
mag.low |
numeric vector with value between 1 (default) and 8, specifying lower boundary of limiting magnitude. |
mag.up |
numeric vector with value between 1 and 8 (default), specifying upper boundary of limiting magnitude. |
filter.mag
returns data frame with the same number of columns as the argument data
,
containing observations with the limiting magnitudes between mag.low
and mag.up
.
Argument data
has to consist of the column named "Lmg".
Kristina Veljkovic
1 2 3 4 5 6 | ## select visual meteor rate data for 13th August 2015, limiting magnitude between 5.5 and 6.5
rate_13.08<-filter.date(rate2015,date.start="2015-08-13",date.end="2015-08-13")
filter.mag(rate_13.08,mag.low=5.5,mag.up=6.5)
## select visual meteor rate data for the 13th August 2015 and limiting magnitude above 6
filter.mag(rate_13.08,mag.low=6)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.