Hi guys, I wonder how can I do survival analysis for several genes at the same time. I have the followup data of some patients(overall survival, disease-free survival), and i have the expression value of several genes (gene1, gene2, and gene3). To do survival analysis for one gene, I can divide the patients into two groups based on mean expression value of the gene and then analyze the survival data. But how can I analyze all the three genes at the same time ( I mean combine the expression of them, and consider them as one gene so I can group my patients). Any response would be appreciated. Thanks
Hi Kevin, thanks for your reply. You tutorial helped me with my survival analysis with R. But you seems misunderstood my question. the survfit()~ gene1 + gene2 + gene3 feature enables me to analyze several genes at the same time and display all the genes on the same survival plot, but all the genes are still separately. what i want to achieve is to combine all the genes into one integrated gene, and then do survival analysis using this one "integrated gene" which contains information of all the three genes. I have the expression values of these three genes separately, how can i combine all the expression values?
Hi, you will have to determine a way to summarise the expression of the 3 genes. You could try something like using the 'residuals' from a regression model of form
~ gene1 + gene2 + gene3
, or some categorical encoding likeHigh_High_High
,Low_Low_Low
,Other
Useful tutorial I have done the first where you fit multiple genes into cox regression model that part i know understand and did learn ,can you show some dummy data for this part "
High_High_High, Low_Low_Low, Other"
as this is neat way to summarized and test out group of genes which can be categorized based on gene class or enrichment which can be used