神経伝導速度

神経伝導速度テンプレート。末梢神経障害の電気生理学的評価に使用。

神経伝導NCV末梢神経電気生理
神経伝導速度

R Code (ggplot2)

library(ggplot2)

# ---- Nerve Conduction Velocity ----
# あなたのデータを入力してください
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 (cm)", limits = c(0, 40)) +
  scale_y_continuous(name = "Latency (ms)", limits = c(0, 10)) +
  labs(title = "Nerve Conduction Velocity") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))