I'm using Rstudio's Rmarkdown for assignment
I made such that code
gapminder%>%group_by(continent) %>% summarize(n=n_distinct(country),.groups="drop_last")
when I run this code at my Rstudio console
It returned result well. But when run on Rmarkdown It doesn't return result
please help me!