Skip to content

Commit

Permalink
fixed typo in the filter
Browse files Browse the repository at this point in the history
  • Loading branch information
MM committed Aug 18, 2024
1 parent e164fc7 commit e1003d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fun.R
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ add_science_filter <- function(data){
}

add_nature_filter <- function(data){
data$filter <- as.numeric(grepl("/s", data$url))
data$filter <- as.numeric(!grepl("/s", data$url))
return(data)
}

Expand Down

0 comments on commit e1003d8

Please sign in to comment.