段階電位

段階電位のテンプレート。距離に伴う減衰をプロット。活動電位との比較に使用。

段階電位シナプス減衰
段階電位

R Code (ggplot2)

library(ggplot2)

# ---- Graded 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 = "Distance from stimulus (mm)", limits = c(0, 20)) +
  scale_y_continuous(name = "Amplitude (mV)", limits = c(0, 30)) +
  labs(title = "Graded Potential") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))