from math import log import operator """ 函数说明:计算给定数据集的经验熵(香农熵) Parameters: dataSet:数据集 Returns: shannonEnt:经验熵 Modify: 2018-03-12 """ def calcShannonE ...
分类:
其他好文 时间:
2020-04-03 12:24:45
阅读次数:
81
''' 我们已经知道,可以直接作用于for循环的数据类型有以下几种: 一类是集合数据类型,如list、tuple、dict、set、str等; 一类是generator,包括生成器和带yield的generator function。 这些可以直接作用于for循环的对象统称为可迭代对象:Iterab ...
分类:
其他好文 时间:
2020-04-02 11:54:00
阅读次数:
71
代码 from collections import Counter ll=['1','1','2','3'] dic=dict(Counter(ll)) print(dic) print([k for k,v in dic.items() if v>=2]) ...
分类:
其他好文 时间:
2020-04-02 01:31:21
阅读次数:
72
类的特殊属性 __dict__ 作用:获取实例对象所绑定的所有属性和方法的字典 ...
分类:
其他好文 时间:
2020-04-01 23:42:56
阅读次数:
162
一、pandas是什么 功能及其强大的数据分析库 可以高效地操作各种数据集(csv格式的文件、excel文件、html文件、xml文件、json格式文件、yaml格式的文件、数据库操作) 二、使用pandas来处理测试数据 1、安装pandas pip install pandas 2、导入pand ...
分类:
编程语言 时间:
2020-03-31 19:29:42
阅读次数:
115
参考链接:https://blog.csdn.net/luo981695830/article/details/82667412?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant ...
分类:
其他好文 时间:
2020-03-30 23:43:53
阅读次数:
122
dict 字典类型,使用key-value方式存储,查找速度快 d={} d[] 添加key到字典: 由于一个key只能对应一个value,所以,多次对一个key放入value,后面的值会把前面的值冲掉 判断元素是否在字典中: 通过get()获取元素对应的值,如果元素不存在不会报错,会输出自己设定的 ...
分类:
其他好文 时间:
2020-03-30 23:42:18
阅读次数:
83
服务方法 1 [AllowAnonymousAttribute] 2 [HttpPost] 3 public string PostWebName(dynamic login) 4 { 5 Dictionary<string, string> dict = new Dictionary<string ...
服务方法 1 [HttpGet] 2 public string GetWebName(string name,string pwd) 3 { 4 Dictionary<string, string> dict = new Dictionary<string, string>(); 5 dict.A ...