心筋活動電位

心筋活動電位テンプレート。心筋細胞の電気活動の記録に使用。Phase 0-4の各相を表示。

活動電位心筋Phase脱分極
心筋活動電位

R Code (ggplot2)

library(ggplot2)

# ---- Cardiac Action Potential ----
# あなたのデータを入力してください
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 (ms)", limits = c(0, 400)) +
  scale_y_continuous(name = "Membrane Potential (mV)", limits = c(-90, 30)) +
  labs(title = "Cardiac Action Potential") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))