神経線維分類

神経線維分類テンプレート。線維径と伝導速度の関係をプロット。

神経線維ABC伝導速度
神経線維分類

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Fiber diameter (um)", limits = c(0, 20)) +
  scale_y_continuous(name = "Conduction velocity (m/s)", limits = c(0, 120)) +
  labs(title = "Nerve Fiber Classification") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))