I'm venturing into Rmarkdown, I found it a very interesting tool. It happens that I'm in trouble, I think it's basic beginner, when I complied Rmarkdown with knitr it gives the unknown object error:
Quitting from lines 13-16 (doc.Rmd)
Error in inherits(x, "list") : objeto 'tab.genova' não encontrado
Calls: <Anonymous> ... withCallingHandlers -> withVisible -> eval -> eval -> kable -> inherits
Execução interrompida
I looked into, I saw that I had to import my data using the function read.csv()
or source
which is usually a problem that beginners usually run into.
I tried these commands and I can not, I think it's a mistake I'm making and not realizing.
The integrity of the codes present in the chunks, they are operating normally, because when giving run current chunk
the graph and the table are plotted normally and without errors.
'''{r TabGenova, echo=FALSE}
library(knitr)
kable(tab.genova)
'''