Hello, i input a code chunk in my rmd which includes the 'View()' function. The code chunk is below:
library(ggplot2)
library(palmerpenguins)
data(penguins)
View(penguins)
I attempted to knit the rmd file and it failed, returning the error output below:
Error in .External2(C_dataviewer, x, title) : unable to start data viewer
Calls: ... withVisible -> eval_with_user_handlers -> eval -> eval -> View
Execution halted
Please help