def stats_desc(self,store_key,cond):
'''
Args
store_key (string):
define which data to be analyzed in the workspace
cond (string):
sample observation
Returns
descriptive statistics
'''
datas = list()
for ite_file in self.store.keys():
datas.append(self.store[ite_file][store_key][str(cond)]['mean'].value)
datas = pd.Series(datas)
return datas.describe()
# one way ANOVA
# for scalar value usage only
评论列表
文章目录