1
I am venturing into Rmarkdown, I found a very interesting tool. I happen to be in trouble, I think it is basic of beginner, when complicating the 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 researched about, I saw that I had to import my data using the function read.csv()
or source
which is usually a problem that beginners usually bump into.
I tried these commands and I’m not succeeding, I believe it’s a mistake I’m making and not realizing.
The integrity of the codes present in the Hunks, they are operating normally, because when I give run current chunk
the chart and table are plotted normally and without errors.
```{r TabGenova, echo=FALSE}
library(knitr)
kable(tab.genova)
```
@Macrus Nunes once again saving the homeland kkk Thank you very much friend, it worked right what you instructed me. That part of the
Session
I didn’t know, I was doing everything wrong, by the tutorials I realized that this part goes well or did not speak and in my case there I had to add thesep=";"
in theread.csv
.– macchi