OCT網膜厚マップ

OCT網膜厚マップテンプレート。黄斑部の網膜厚を記録。

OCT網膜厚黄斑光干渉断層計
OCT網膜厚マップ

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Position", limits = c(-3, 3)) +
  scale_y_continuous(name = "Thickness (μm)", limits = c(0, 500)) +
  labs(title = "OCT Retinal Thickness") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))