FIM/Barthel Index推移

リハビリテーション評価スコア推移テンプレート。FIM/Barthel Index。

FIMBarthelリハビリADL回復
FIM/Barthel Index推移

R Code (ggplot2)

library(ggplot2)

# ---- FIM/Barthel Index Progression ----
# あなたのデータを入力してください
df <- data.frame(
  x = c(),
  y = c()
)

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Days after Admission", limits = c(0, 90)) +
  scale_y_continuous(name = "Score", limits = c(0, 130)) +
  labs(title = "FIM/Barthel Index Progression") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))