ベクトル心電図ループ

ベクトル心電図ループテンプレート。3平面のベクトル軌跡表示。

vcgベクトル心電図ループ前額面
ベクトル心電図ループ

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "X (mV)", limits = c(-1.5, 1.5)) +
  scale_y_continuous(name = "Y (mV)", limits = c(-1.5, 1.5)) +
  labs(title = "Vectorcardiogram (VCG) Loop") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))