Hi,
Make sure you are using the intended filter function e.g.,

dplyr::filter(intro, FingerCount > 13)

Best,
Marcel

Thank you. That filtered the data set. But, when attempting that while making a new data name (intro_more_fingers) it still states that the object can't be found.

Did you try the entire expression?

intro_more_fingers <- dplyr::filter(intro, FingerCount > 13)
1 Like

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

If you have a query related to it or one of the replies, start a new topic and refer back with a link.