Very helpful, thanks a lot, I wish to see more videos about GSEA and Gene ontology :)
@Mkvine2 жыл бұрын
Wow this has been so helpful. Thank you so much!
@esan120au2 жыл бұрын
Excellent job! Thank you
@ryanpotter1282 жыл бұрын
Super helpful!
@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?
@sajedehfadaei95424 ай бұрын
me too. us used Fisher exact test in Scipy package
@tilestats4 ай бұрын
@@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?