错误的方法import numpy as npdata_list = np.asarray([1.1, 2.2, 0, np.nan, 3.3])print(data_list)a = data_list[np.where(data_list != np.nan)]print(a) 运行结果如下 [ ...
论文阅读-The Prevention and Handling of the Missing Data
文章标题:The Prevention and Handling of the Missing Data作者:Hyun Kang作者单位:Department of Anesthesiology and Pain Medicine, Chung-Ang Universtiy College of M ...
Python-图形绘制
matplotlib 绘图散点图import matplotlib.pyplot as pltdef draw_scatter(): np.random.seed(10) x = np.arange(0, 20) y = np.arange(0, 20) + np.random.r ...
密码学-Secret Sharing
这两天发现了一个之前查过的概念一直没有总结。这次总结一个密码学中的概念,叫做 Secret Sharing,因为这个东西一开始用来分享密钥的,所以中文名称也有人叫做密钥分享。提到密钥有点 confusing,本文中就叫做秘密共享吧。 需求Secret Sharing 的核心在于:能否设计一个方案, ...
论文阅读-PROCHLO Strong Privacy for Analytics in the Crowd
IntroductionMotivation and AlternativesThe Encode-Shuffle-Analyze Architecture ESA 架构主要分为三层,分别是:Encoders,Shufflers 以及 Analyzers,就像上面的这个图一样。 Encoders 运 ...