So I'm pretty sure my question is very simple, but I haven't found anything clear that has helped me.
Basically, I have a dataset with information about bird densities based on observational data. Each bird is labeled with a four letter acronym denoting the species, under the column "Group."
Here's a simplified example of what it looks like -
df <-
structure(list(Group = c("ARTE", "RAZO", "LBBG", "LESP", "RAZO",
"ARTE"), Month = c(405067L, 405067L, 405067L, 405067L, 405067L,
405067L), Stratum = c("g200", "g100", "g100", "g100", "g300",
"g300")), class = "data.frame", row.names = c(NA, -6L))
Group Month Stratum
1 ARTE 405067 g200
2 RAZO 405067 g100
3 LBBG 405067 g100
4 LESP 405067 g100
5 RAZO 405067 g300
6 ARTE 405067 g300
How can I create an object for all rows containing the information associated only with ARTE
and RAZO
?