%in% conflicted

I encountered an error message that says:

Error in filter_impl(.data, quo) : 
  Evaluation error: %in% found in 2 packages. You must indicate which one you want with ::
 * ffbase::%in%
 * base::%in%.

I tried to add this in the beginning of my code:

%in% = base::%in%

but it didn't work.

1 Like

I haven't used conflicted, but I suspect you may need backticks around %in% (not sure how to display this as the forum software interprets the backticks..

4 Likes

If you want to do it inline than you would put two backticks on either side with a space between the code and the sets of backticks. It would look like this:

`` base::`%in%` ``

which gives you this: base::`%in%`

or of course, you could do it in a code chunk with 3 backticks above and below the code:

base::`%in%` 
1 Like

Thanks, I didn't try the spaces.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.