Created
July 18, 2025 10:24
-
-
Save abikoushi/c46f6943e8d585dfbbb66db3acfbc11e to your computer and use it in GitHub Desktop.
因果ダイアグラム:DiagrammeR使ってみた
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(DiagrammeR) | |
library(DiagrammeRsvg) | |
library(magrittr) | |
library(rsvg) | |
##佐藤俊哉『宇宙怪人しまりす 統計よりも重要なことを学ぶ』(朝倉書店)より | |
g <- grViz("digraph{ | |
graph[rankdir = TB] | |
node[shape = rectangle] | |
A[label = 'かぜの\n重症度'] | |
B[label = 'ヨクナール\n使用'] | |
C[label = 'かぜ症状の\n回復'] | |
edge[color = black] | |
A -> B | |
A -> C | |
B -> C | |
}") | |
print(g) | |
g %>% export_svg() %>% | |
charToRaw() %>% | |
rsvg_png("graph.png") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment