EF-BNP散布図
EF-BNP散布図テンプレート。左室駆出率とBNP値の関係。

R Code (ggplot2)
library(ggplot2) # ---- EF vs BNP Scatter ---- # あなたのデータを入力してください df <- data.frame( x = c(), y = c() ) ggplot(df, aes(x = x, y = y)) + geom_point(size = 2) + geom_line() + scale_x_continuous(name = "LVEF (%)", limits = c(10, 70)) + scale_y_continuous(name = "BNP (pg/mL)", limits = c(0, 2000)) + labs(title = "EF vs BNP Scatter") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







