受容体占有率

受容体占有率曲線テンプレート。薬物濃度と受容体占有の関係をプロット。

受容体占有率Kd
受容体占有率

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "log [Drug] (M)", limits = c(-9, -3)) +
  scale_y_continuous(name = "Receptor occupancy (%)", limits = c(0, 100)) +
  labs(title = "Receptor Occupancy") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))