リズムストリップグリッド

リズムストリップグリッドテンプレート。長時間心電図モニター記録用。

リズム心電図モニター長時間
リズムストリップグリッド

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Time (seconds)", limits = c(0, 10)) +
  scale_y_continuous(name = "Voltage (mV)", limits = c(-2, 2)) +
  labs(title = "Rhythm Strip Grid") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))