library(tidyverse)
ggplot(mpg, aes(x = hwy, y = cty, color = cyl)) +
geom_point(alpha = 0.5, size = 2) +
scale_color_viridis_c() +
theme_minimal()イーピーエス株式会社
2026-04-08
発表の目的
注意事項
1. Quarto とは
2. Quarto の事例紹介
3. Quarto に触れてみよう
4. まとめ
1. Quarto とは
2. Quarto の事例紹介
3. Quarto に触れてみよう
4. まとめ
1. Quarto とは
2. Quarto の事例紹介
3. Quarto に触れてみよう
4. まとめ
1. Quarto とは
2. Quarto の事例紹介
3. Quarto に触れてみよう
4. まとめ
RStudio起動 → File → New File → Quarto Document…
Use visual markdown editor のチェックを外す
Create
embed-resources : true xxx_files フォルダを作成せず、画像・CSS などの情報をすべて html ファイル内にすべて埋め込み、html ファイルのみを作成
cache を設定すれば不要な再実行なく、レンダリング可能
1. Quarto とは
2. Quarto の事例紹介
3. Quarto に触れてみよう
4. まとめ
title: "タイトル"
subtitle: "サブタイトル"
date: yyyy-mm-dd # today と記載すれば実行日
author: "著者"
format:
html: # 出力形式
toc: true # 目次の作成
toc-depth: 2 # 目次の階層
number-sections: true # 章番号
embed-resources: true # 自己完結する html ファイル作成
code-fold: true # コードの折り畳み
code-copy: true # コードコピーボタンの表示
execute: # コードの実行・表示形式の設定
echo: true # コードを出力ファイルに表示, false : 非表示
warning: false # warning を出力ファイルに表示, false : 非表示backup
backup
title: "タイトル"
subtitle: "サブタイトル"
date: yyyy-mm-dd # today と記載すれば実行日
author: "著者"
format:
revealjs:
theme: default # デザイン設定
embed-resources: true # 自己完結する html ファイル作成
slide-number: true # スライド番号の表示
code-copy: true # コードコピーボタンの表示
execute: # コードの実行・表示形式の設定
echo: true # コードを出力ファイルに表示, false : 非表示
warning: false # warning を出力ファイルに表示, false : 非表示backup