CYP代謝酵素薬物別寄与率
CYP代謝酵素の主要薬物別寄与率テンプレート。

R Code (ggplot2)
library(ggplot2) # ---- CYP Enzyme Drug Metabolism Contribution ---- # あなたのデータを入力してください df <- data.frame( x = c(), y = c() ) ggplot(df, aes(x = x, y = y)) + geom_point(size = 2) + geom_line() + scale_x_continuous(name = "", limits = c(0, 6)) + scale_y_continuous(name = "% of Drug Metabolism", limits = c(0, 100)) + labs(title = "CYP Enzyme Drug Metabolism Contribution") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







