filter_by_year {forcis} | R Documentation |
Filter FORCIS data by year of sampling
Description
Filters FORCIS data by year of sampling.
Usage
filter_by_year(data, years)
Arguments
data |
a |
years |
a |
Value
A tibble
containing a subset of data
for the desired years.
Examples
# Import example dataset ----
file_name <- system.file(file.path("extdata", "FORCIS_net_sample.csv"),
package = "forcis")
net_data <- read.csv(file_name)
# Dimensions of the data.frame ----
dim(net_data)
# Filter by years ----
net_data_sub <- filter_by_year(net_data, years = 1992)
# Dimensions of the data.frame ----
dim(net_data_sub)
[Package forcis version 1.0.1 Index]