@heavywatal
Hello, R Markdown!
3 * 14
ggplot(diamonds) +
aes(carat, price) +
geom_point(aes(color = clarity, size = cut))
## [1] 42
普通のテキスト
Rコード
図
<html>
<head>
<link rel="stylesheet"
href="style.css">
</head>
<body>
<section><h2>見出し</h2>
スライド1 本文
</section>
<section><h2>見出し</h2>
スライド2 本文
</section>
<script src="reveal.js">
</script>
</body>
</html>
しかし、生のHTMLを手で書くのは大変…
## スライド1 見出し
スライド1 本文
---
## スライド2 見出し
スライド2 本文
---
## コードブロック
```
3 * 14
ggplot(diamonds) +
aes(carat, price) +
geom_point()
```
コードブロックの実行結果も表示できたら嬉しい…
---
title: "Goodbye PowerPoint"
format: revealjs
---
Hello, R Markdown!
```{r hello}
3 * 14
ggplot(diamonds) +
aes(carat, price) +
geom_point()
```
```
## [1] 42
```
<img src="figure/hello-1.png">
knitr 🧶 でコードチャンクを実行
↓
すべて繋がった。結果はスライド#2。簡単に実現する方法は?
.qmd
|> knitr |> Pandoc |> reveal.js.Rmd
|> knitr |> Pandoc |> ioslides, Slidy.Rmd
|> knitr |> Hugo |> reveal.js.Rmd
|> knitr |> remark.js