简体   繁体   中英

Exclude values from data.frame in R

I have the following dataframe:

Count Year
32   2018
346  2017
524  2016
533  2015
223  2014
1    2010
3    2008
1    1992

Is it possible to exclude the years 1992 and 2008. I tried different ways, but don't find a flexible solution. I would like to have the same dataframe without the years 1993 and 2008.

Many thanks in advance, jeemer

library(dplyr); filter(df, year != 1992 | year != 2008)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM