換気血流比
換気血流比のテンプレート。肺の上部から下部までのV/Q分布をプロット。

R Code (ggplot2)
library(ggplot2) # ---- V/Q Ratio ---- # あなたのデータを入力してください df <- data.frame( x = c(), y = c() ) ggplot(df, aes(x = x, y = y)) + geom_point(size = 2) + geom_line() + scale_x_continuous(name = "V/Q ratio", limits = c(0, 3)) + scale_y_continuous(name = "Relative amount", limits = c(0, 10)) + labs(title = "V/Q Ratio") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







