blogdown
Lorne Campbell (@LorneJCampbell; 12/2): Thanks to the help of @dsquintana (thread here https://t.co/hmwzM1kpeB) I started adding links to my pubs & talks on my new website built with blogdown in R (still in progress). For older papers, putting materials on OSF and adding here as well https://t.co/QU3G0K9A9O https://t.co/V1WYcS0WgP ↪
Peder M Isager (@peder_isager; 4/1): Thank you @dsquintana for your excellent tweetorial on how to create, edit and publish a blog online via @rstudio. Took me a little longer than an hour, but that’s on me. The blogdown package is really quite intuitive: https://t.co/cpNaXwvlke ↪
Richard I Carpenter (@RICarpenter; 3/0): @xieyihui Thank you for blogdown.
It took me a week or so – reading, prepping, building in RStudio, then going live – but now my ‘warning’ post is published. I can migrate my blog from Blogger to Netlify!
h/t .@dataandme for introducing me to it. ↪
Gareth Netto (@GarethNetto; 0/1): Sunday’s are all about…. blogdown…? #blogdown #rstats #blogging ↪
knitr
Atsushi (Atusy) (@Atsushi776; 0/0): plotされん……
output: html_document
Setup
```{r}
library(knitr)
library(ggplot2)
library(plotly)
knit_print.ggplot <- function(x, …) {
plotly::ggplotly(x)
}
```
Plot
```{r}
ggplot(iris, aes(Sepal.Length, Sepal.Width, color = Species)) +
geom_point()
``` https://t.co/NqvuzgzuWr ↪