Thank you for your video. I tried to compute the p-value from Fisher's exact test with the table shown at 5'40, and get 0.306. Could you explain how you get 0.93 ?
@@sajedehfadaei9542 With this code, I get 0.93: import numpy as np import scipy.stats as stats table = np.array([[1, 3], [8, 8]]) stats.fisher_exact(table, alternative='greater') What code did you use to get 0.306?
best video I've watched on this topic
this video is a masterpiece
Very helpful, thanks a lot, I wish to see more videos about GSEA and Gene ontology :)
Excellent job! Thank you
Wow this has been so helpful. Thank you so much!
08:53 GSEA
Thank you for your video.
I tried to compute the p-value from Fisher's exact test with the table shown at 5'40, and get 0.306.
Could you explain how you get 0.93 ?
Which software did you use?
me too. us used Fisher exact test in Scipy package
@@sajedehfadaei9542 With this code, I get 0.93:
import numpy as np
import scipy.stats as stats
table = np.array([[1, 3], [8, 8]])
stats.fisher_exact(table, alternative='greater')
What code did you use to get 0.306?
@sajedehfadaei9542 see above or below
Super helpful!