Errors knitting markdown files object not found

Please ask your questions about R Markdown here.

I am using rtweet library as a homework, I don't get any error running the code chunks, but when
I knit the Markdown file, I get this error message:
code:
tweets2<- tweets_3 %>% mutate(text = str_replace_all(text,'(http|https)[^([:blank:]|\"|<|&|#\n\r)]+', "")) %>% select(created_at, text)

Error:

Object 'tweets_3' not found

  1. List item

Hi,

Welcome to the RStudio community!

Since your questions is about homework, we want to share our policy where we state that we can help you find a solution, but not provide one directly

However, in this case the error is not vital for the homework itself I think. The message Object 'tweets_3' not found indicates that the object was not defined higher up in your code and thus does not exist at the time it is used in the code shown. Check all variable names and order of the code to fix this.

Additionally, we recommend creating a reprex if you post here so we can more easily help you out in future. A reprex consists of the minimal code and data needed to recreate the issue/question you're having. You can find instructions how to build and share one here:

Good luck!

2 Likes

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.