静止膜電位

細胞外カリウム濃度と静止膜電位の関係テンプレート。Nernst式の検証に使用。

膜電位Nernstカリウム
静止膜電位

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_log10(name = "[K+]o (mM)", limits = c(1, 100)) +
  scale_y_continuous(name = "Membrane potential (mV)", limits = c(-100, 0)) +
  labs(title = "Resting Membrane Potential") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))