import random import math from scipy.stats import norm import matplotlib.pyplot as plt %matplotlib inline def norm_dist_prob(theta): y = norm.pdf(thet ...
分类:
其他好文 时间:
2020-02-24 18:30:59
阅读次数:
56
打包分析 1.初级分析:webpack内置的stats(构建的统计信息) 可以在 package.json 中使用 stats,也可以在 Node API 中使用 stats webpack --config webpack.prod.js --json > stats.json 2.速度分析:sp ...
分类:
Web程序 时间:
2020-02-15 10:01:29
阅读次数:
110
目的 对不同处理的基因的表达量进行差异分析 使用python的scipy包进行t检验 导入统计包 from scipy import stats 单样本的T检验(ttest_1samp) stats.ttest_1samp(data,1) 两独立样本T检验(ttest_ind) 当两个总体方差相等时... ...
分类:
其他好文 时间:
2020-01-21 12:05:59
阅读次数:
135
27.2. The Statistics Collector https://www.postgresql.org/docs/current/monitoring-stats.html 27.2.1. Statistics Collection Configuration27.2.2. Viewin ...
分类:
其他好文 时间:
2020-01-18 16:27:44
阅读次数:
100
ibrix_version -l 查看版本/usr/local/ibrix/bin/etc/init.d/ibrix_fusionmanager restart 重启FM ibrix_health -l 查看状态 ibrix_health -i -h fsn1 ibrix_stats -l -c v ...
分类:
Web程序 时间:
2020-01-11 22:09:40
阅读次数:
103
【1】错误信息 【1.1】在测试机上还原 从主服务器上传输备份文件到测试机,发现还原报错,错误信息如下: (1)第一次还原,直接restore with stats=10 (2)第二次还原,加上了 with continue_after_error sql server错误日志,无系统错误日志 英文 ...
分类:
数据库 时间:
2020-01-10 00:24:51
阅读次数:
529
COMPUTE STATS主要作用: 收集有关表中数据的容量和分布以及所有相关列和分区的信息。这些信息存储在metastore数据库中,Impala使用这些信息来帮助优化查询。例如,如果Impala可以确定一个表是大是小,或者有很多或很少不同的值,它就可以为一个连接查询或插入操作适当地组织并行化工作 ...
分类:
其他好文 时间:
2020-01-08 12:26:18
阅读次数:
187
使用DMV,诊断和调优DB性能。 查看等待统计信息,找出SQL Server慢在哪里: SELECT wait_type , SUM(wait_time_ms / 1000) AS [wait_time_s] FROM sys.dm_os_wait_stats DOWS WHERE wait_typ ...
分类:
数据库 时间:
2020-01-03 21:34:40
阅读次数:
88
z检验: 计算临界值:scipy.stats.norm.ppf(level_of_confidence) 计算p值:scipy.stats.norm.sf(abs(z_score)) 或 1-scipy.stats.norm.cdf(abs(z_score)) 左尾或右尾,双尾检验需在此基础上乘以2 ...
分类:
编程语言 时间:
2019-12-29 16:31:57
阅读次数:
774
1、修改A主机的keepalived和HAProxy的配置文件 修改A主机的keepalived配置文件 修改A主机的haproxy配置文件 global maxconn 100000 chroot /usr/local/haproxy stats socket /var/lib/haproxy/h ...
分类:
其他好文 时间:
2019-12-28 19:14:51
阅读次数:
85