貧血形態分類散布図
貧血形態分類散布図テンプレート。MCV×MCHCの2軸で疾患別ゾーン表示。

R Code (ggplot2)
library(ggplot2) # ---- Anemia Classification Scatter (MCV×MCHC) ---- # あなたのデータを入力してください df <- data.frame( x = c(), y = c() ) ggplot(df, aes(x = x, y = y)) + geom_point(size = 2) + geom_line() + scale_x_continuous(name = "MCV (fL)", limits = c(50, 130)) + scale_y_continuous(name = "MCHC (g/dL)", limits = c(25, 38)) + labs(title = "Anemia Classification Scatter (MCV×MCHC)") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







