摘要:
from __future__ import print_function # 均值计算 data = [3.53, 3.47, 3.51, 3.72, 3.43] average = float(sum(data))/len(data) print(average) #方差计算 total = 0 for value in data: total += (value - aver... 阅读全文
摘要:
前言 本文主要演示GEO数据库的一些工具,使用的数据是2015年在Nature Communications上发表的文章Regulation of autophagy and the ubiquitin-proteasome system by the FoxO transcriptional ne 阅读全文