筋長-張力関係

筋のサルコメア長と張力の関係テンプレート。至適長の決定に使用。

サルコメア張力至適長
筋長-張力関係

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Sarcomere length (um)", limits = c(1, 4)) +
  scale_y_continuous(name = "Tension (% max)", limits = c(0, 100)) +
  labs(title = "Length-Tension Relationship") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))