RTA比較

尿細管性アシドーシス(RTA)の型比較テンプレート。I/II/IV型を比較。

RTA尿細管性アシドーシス比較
RTA比較

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Type", limits = c(0, 4)) +
  scale_y_continuous(name = "Serum K+ / pH / HCO3-", limits = c(0, 10)) +
  labs(title = "RTA Comparison") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))