分析物濃度棒グラフ

分析物濃度棒グラフテンプレート。各分析物の測定値を比較。

bar棒グラフ分析物濃度臨床検査
分析物濃度棒グラフ

R Code (ggplot2)

library(ggplot2)

# ---- Analyte Concentration Bar Chart ----
# あなたのデータを入力してください
df <- data.frame(
  x = c(),
  y = c()
)

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Analyte", limits = c(0, 8)) +
  scale_y_continuous(name = "Concentration", limits = c(0, 200)) +
  labs(title = "Analyte Concentration Bar Chart") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))