summaryrefslogtreecommitdiff
path: root/scripts/test-prediction-plot.R
blob: 512fa829379eb3cecc94e9f22a1174edacf857a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/Rscript

library(ggplot2)

data = read.csv("data/predictions-measurements.csv",header=T)
data$SMILES <- reorder(data$SMILES,data$LOAEL)
img <- ggplot(data, aes(SMILES,LOAEL,ymin = min(LOAEL), ymax=max(LOAEL),color=Origin))
img <- img + ylab('-log(LOAEL mg/kg_bw/day)') + xlab('Compound') + theme(axis.text.x = element_blank()) + theme(legend.title=element_blank())
img <- img + geom_point()

ggsave(file='figures/test-prediction.pdf', plot=img,width=12, height=8)