I am trying to plot a venn diagram of common genes from separate lists, but the output is incorrect as I know there should be overlaps. I have spent quite a few hours looking for help on this topic but I cannot solve it - please could someone look at my code and advise?
#combining the data as a list
combined <- list(A = tumour1, B = tumour2, C = tumour3)
combined
#trying to plot the data as a venn diagram
venn.diagram(x=combined,
category.names = c("Tumour 1", "Tumour 2", "Tumour 3"),
filename = '#25_venn_diagram.png', output = TRUE)