上一页 1 2 3 4 5 6 7 ··· 36 下一页

2021年9月26日

excel表格复制到word后出现多余空格

摘要: excel表格复制到word后出现多余空格,如下图数字后面的黑点。 选中后选择替换。查找内容填一个空格,替换内容不填,选择全部替换。 阅读全文

posted @ 2021-09-26 16:21 那抹阳光1994 阅读(6206) 评论(0) 推荐(0) 编辑

numpy以追加模式保存数据至txt

摘要: with open(save_path + '\data.txt', 'a+') as f: np.savetxt(f, data) 阅读全文

posted @ 2021-09-26 16:12 那抹阳光1994 阅读(1096) 评论(0) 推荐(1) 编辑

2021年9月22日

分类器的概率校准Probability calibration

摘要: Probability calibration https://scikit-learn.org/stable/modules/calibration.html 在执行分类时,您通常不仅希望预测类标签,而且还希望获得相应标签的概率。这个概率让你对预测更有信心。有些模型对类概率的估计很差,有些甚至不支 阅读全文

posted @ 2021-09-22 21:55 那抹阳光1994 阅读(394) 评论(0) 推荐(0) 编辑

2021年9月18日

matlab histfit(data,nbins,dist)直方图拟合

摘要: rng default; % For reproducibility r = normrnd(10,1,100,1); figure histfit(r) rng default; % For reproducibility r = betarnd(3,10,100,1); figure histf 阅读全文

posted @ 2021-09-18 16:01 那抹阳光1994 阅读(707) 评论(0) 推荐(0) 编辑

matlab normspec叠加图

摘要: p = normspec(specs,mu,sigma) matlab自带的这个函数每次绘制都会打开一个新的句柄,无法绘制两个分布的叠加。在原函数基础上修改获得如下图类似的效果。 normspec两个分布叠加 修改 function [p,h] = mynormspec(specs,mu,sigma 阅读全文

posted @ 2021-09-18 15:45 那抹阳光1994 阅读(556) 评论(0) 推荐(0) 编辑

假设检验中的两类错误

摘要: 假设: H0:You are not pregnantH1:You are pregnant Type I and type II errors - wiki type I error is the rejection of a true nullhypothesis (also known as 阅读全文

posted @ 2021-09-18 11:46 那抹阳光1994 阅读(1595) 评论(0) 推荐(0) 编辑

2021年9月16日

DET曲线(检测误差权衡曲线)

摘要: DET曲线 DET曲线即Detection error tradeoff (DET) curve,检测误差权衡曲线。功能类似于ROC曲线,但有时DET曲线更容易判断分类器的性能。 参考sklearn中的介绍: DET curves are commonly plotted in normal dev 阅读全文

posted @ 2021-09-16 19:58 那抹阳光1994 阅读(2570) 评论(0) 推荐(1) 编辑

Youden's J statistic (Youden's index)

摘要: Youden's J statistic (also called Youden's index) is a single statistic that captures the performance of a dichotomous diagnostic test. Informedness i 阅读全文

posted @ 2021-09-16 16:45 那抹阳光1994 阅读(1349) 评论(0) 推荐(0) 编辑

全面了解ROC曲线

摘要: 转自:https://www.plob.org/article/12476.html 初识ROC曲线 1. ROC的前世今生: ROC的全称是“受试者工作特征”(Receiver Operating Characteristic)曲线,首先是由二战中的电子工程师和雷达工程师发明的,用来侦测战场上的敌 阅读全文

posted @ 2021-09-16 11:48 那抹阳光1994 阅读(1274) 评论(0) 推荐(0) 编辑

scipy.stats.norm.ppf()

摘要: scipy.stats.norm.ppf() 分位点函数(CDF的逆)(也被用作“标准偏差乘数”) 即累计分布函数的逆函数(分位点函数,给出分位点返回对应的x值)。 scipy.stats.norm.ppf(0.95, loc=0,scale=1)返回累积分布函数中概率等于0.95对应的x值(CDF 阅读全文

posted @ 2021-09-16 09:54 那抹阳光1994 阅读(8617) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 36 下一页

导航