心臓電気軸基準図

心臓電気軸基準図テンプレート。生理学的な心電図軸の理解。

vcg心臓電気軸生理学
心臓電気軸基準図

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "", limits = c(-2, 2)) +
  scale_y_continuous(name = "", limits = c(-2, 2)) +
  labs(title = "Cardiac Axis Reference Diagram") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))