Entering edit mode
3.5 years ago
Binghong
▴
20
does anyone know how to make a plot(drug-gene expression correlation) like this ,thanks
does anyone know how to make a plot(drug-gene expression correlation) like this ,thanks
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Need little more information. Maybe some reference or a little more explanation on the data type. Like what sort of data do you have for drugs and all.
the plot is from https://pubmed.ncbi.nlm.nih.gov/29894693/ I want to replicate it ,the data are gene expression and PARPi IC50,maybe, but don't know use which tool(pacakage)
Then this is not very hard.
You can use programming (Python: scipy.stats/R: cor function) to calculate the correlation between all the genes and PARPi IC50 values in your experiment. Sort the genes based on obtained correlation and plot them using plotting libraries (Python: matplotlib/R: ggplot2)
oh thanks , I have a try