That was incredibly helpful, not only for GSEA but also for Fischer exact test, thanks!
@pancake91912 жыл бұрын
best video I've watched on this topic
@amrsalaheldinabdallahhammo6632 жыл бұрын
Very helpful, thanks a lot, I wish to see more videos about GSEA and Gene ontology :)
@footballchannel84302 жыл бұрын
this video is a masterpiece
@Mkvine2 жыл бұрын
Wow this has been so helpful. Thank you so much!
@esan120au2 жыл бұрын
Excellent job! Thank you
@esan120au2 жыл бұрын
08:53 GSEA
@yvesaubry7556 Жыл бұрын
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 ?
@tilestats Жыл бұрын
Which software did you use?
@sajedehfadaei95426 ай бұрын
me too. us used Fisher exact test in Scipy package
@tilestats6 ай бұрын
@@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?