Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Rの基礎8 作図
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
xjorv
January 22, 2021
Education
1
250
Rの基礎8 作図
Rの基礎8は、Rでの作図(グラフ作成)について説明します。
xjorv
January 22, 2021
Tweet
Share
More Decks by xjorv
See All by xjorv
コンパートメントモデル
xjorv
3
5.9k
コンパートメントモデルをStanで解く
xjorv
0
500
生物学的同等性試験 検出力の計算法
xjorv
0
3.6k
生物学的同等性試験ガイドライン 同等性パラメータの計算方法
xjorv
0
6.5k
粉体特性2
xjorv
0
2.6k
粉体特性1
xjorv
0
2.9k
皮膜5
xjorv
0
2.4k
皮膜4
xjorv
0
2.3k
皮膜3
xjorv
0
2.3k
Other Decks in Education
See All in Education
環境・社会理工学院(建築学系)大学院説明会 2026|東京科学大学(Science Tokyo)
sciencetokyo
PRO
0
520
Tips for the Presentation - Lecture 2 - Advanced Topics in Big Data (4023256FNR)
signer
PRO
0
500
リモートリポジトリの操作 / 02-c-remote
kaityo256
PRO
0
120
SSH公開鍵認証 / 02-b-ssh
kaityo256
PRO
0
110
The World That Saved Me: A Story of Community and Gratitude
_hashimo2
4
540
Introduction - Lecture 1 - Information Visualisation (4019538FNR)
signer
PRO
0
5.3k
自己紹介 / who-am-i
yasulab
6
6.4k
Pen-based Interaction - Lecture 4 - Next Generation User Interfaces (4018166FNR)
signer
PRO
0
2.1k
2025-12-19-LT
takesection
0
120
演習:Gitの応用操作 / 05-git-advanced
kaityo256
PRO
0
210
インシデント対応
akira345
0
280
計算物理におけるGitの使い方 / 01-c-compphys
kaityo256
PRO
2
490
Featured
See All Featured
Reflections from 52 weeks, 52 projects
jeffersonlam
356
21k
The Cult of Friendly URLs
andyhume
79
6.8k
VelocityConf: Rendering Performance Case Studies
addyosmani
333
24k
Ruling the World: When Life Gets Gamed
codingconduct
0
170
Navigating Weather and Climate Data
rabernat
0
140
Navigating the Design Leadership Dip - Product Design Week Design Leaders+ Conference 2024
apolaine
0
220
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
659
61k
DBのスキルで生き残る技術 - AI時代におけるテーブル設計の勘所
soudai
PRO
62
51k
Information Architects: The Missing Link in Design Systems
soysaucechin
0
830
Art, The Web, and Tiny UX
lynnandtonic
304
21k
Believing is Seeing
oripsolob
1
83
Large-scale JavaScript Application Architecture
addyosmani
515
110k
Transcript
Rの基礎8 作図 2020/8/14 Ver. 1.0
Rと作図 Rはパッケージなしでも作図機能が豊富 *http://cse.naro.affrc.go.jp/takezawa/r-tips/r/47.html のスクリプトを走らせただけ
基本の散布図: plot plot関数で散布図などを書くことができる plot(x, y)が基本的な使い方となる
散布行列: pairs 行列・データフレームの散布図作成に利用できる pairs(data.frame)で各列間の相関を調べられる *相関係数はcor(data.frame)で調べられる
ヒストグラム: hist hist関数でヒストグラム(データの分布)を描画できる hist(vector)が基本の形となる
箱ひげ図: boxplot boxplot関数で箱ひげ図(データの分布)を描画できる 箱ひげ図: https://ja.wikipedia.org/wiki/%E7%AE%B1%E3%81%B2%E3%81%92%E5%9B%B3 boxplot(vector)が基本の形となる
Rの基礎作図の問題点 複雑な描画をするとスクリプトがわかりにくくなる • 高次作図関数と低次作図関数を組み合わせる • plotを重ね合わせる • 描画エリアを分割する 等々の複雑な操作が必要
ggplot2パッケージ 現代Rでの作図のデファクト・スタンダード やや複雑だが、きれいなグラフが簡単に書ける *ggplot2 reference: https://ggplot2.tidyverse.org/reference/
ggplot2を使う: ライブラリを読み込む ggplot2 もしくは tidyverse を読み込む • tidyverseにはggplot2が含まれる • tidyverseの他のパッケージをグラフ作成に利用できる
ggplot2の基礎 ggplot関数を使用する ggplot(data.frame, aes(…)) • ggplotの第一引数はデータフレーム • 第二引数にaes関数を置く *aes: aesthetic、「美的な」の略
ggplot2の基礎: aes関数 aes関数には、x・y軸の指定、色の指定などを入力する irisデータフレームを作図に使う x軸はPetal.Lengthの列 y軸はSepal.Lengthの列 線の色はSpeciesの列 棒グラフの中などはSpeciesの列 で記述する *iris:
アヤメの花弁、がく片の長さのデータセット。Rでは始めから利用でき、よく用いられる
ggplot2の基礎: geom関数 グラフの形はgeom関数で決定する geom_point() geom_line() geom_bar() geom_boxplot() geom_density() geom_quantile() geom_errorbar()
geom_linerange() 点グラフ(散布図) 線グラフ 棒グラフ 箱ひげ図 確率密度 回帰(四分位幅あり) エラーバー エラーバー(横線なし)
ggplot2の基礎: geom関数の使い方 ggplot関数と+でつなぐ
まとめ • Rには作図のための関数が準備されている • ggplot2が作図のスタンダードとなっている • ggplot(data.frame, aes())が基本の形 • geom関数でグラフの形を決める