Hello Community, I am not sure if I am posting in the right place.
I am Starting learning Rstudio programming and I am having some issue that I am not quite sure how to fix.
I was working on R Markdown and when I press knit to see what I am doing it show me this:
|............ | 40% [ggplot for penguin data]
processing file: Sample.rmd
Error in .External2():
! unable to start data viewer
Backtrace:
▆
- └─utils::View(penguins)
Quitting from Sample.rmd:9-18 [ggplot for penguin data]
Execution halted
What am I doing wrong?
Thank you,
Val
We don't know for sure what you're doing wrong because you haven't shown is what you're doing, but it looks like you're trying to use the View() function to show the contents of a dataframe. That won't work in a markdown html document because there is no Data Viewer like there is in RStudio. Use print(penguins) instead of View(penguins).
Thank you "mduvekot",
for as much I did not give you lots of information it worked very well your advice.
I actually apologize for not giving much information but I was not even sure if it would ever reached anyone
.
Now , that I know, I might come back more often ,
Thank you