I'm trying to knit an rmd file to HTML. All of the code chunks work fine, but when I knit, I get the error "Error while opening file - no such file exists." It's saying the dataframe is not found, but it works when the code chunks are tested.
I am VERY new, so I may have done something wrong, I just don't know what.
When knitting a document, a new environment is initiated. Nothing that is in your local environment while running the chunks interactively will still be present. Be sure to have code to read in any data that is used.
Thank you for your response! What's the best way to do that?
Currently I have read.csv("Cloud/project/Analyzing_LAN_Performance_LAN_Data")
but I keep getting "Error in file(file, "rt") : cannot open the connection"