干渉実験図

干渉実験図テンプレート。干渉物質の影響を示す回帰図。

interference干渉回復率臨床検査
干渉実験図

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Interferent Concentration", limits = c(0, 100)) +
  scale_y_continuous(name = "% Recovery", limits = c(70, 130)) +
  labs(title = "Interference Experiment") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))