一. apply函数 作用:对 DataFrame 的某行/列应用函数之后,Apply 返回一些值。函数既可以使用默认的,也可以自定义。注意:在第二个输出中应用 head() 函数,因为它包含了很多行。 #创建一个新函数 def num_missing(x): return sum(x.isnull ...
分类:
编程语言 时间:
2020-04-09 11:02:52
阅读次数:
134
一、对新时代中国特色社会主义做词频统计 import jieba txt = open("新时代中国特色社会主义.txt","r",encoding="utf-8").read() words = jieba.lcut(txt) counts = {} for word in words: if l ...
分类:
其他好文 时间:
2020-04-08 11:34:30
阅读次数:
103
import jieba path = 'C:\\Users\\Administrator\\Desktop\\3国演义.txt' text = open(path,'r',encoding='utf-8').read() words = jieba.lcut(text) excludes = [' ...
分类:
其他好文 时间:
2020-04-07 09:31:11
阅读次数:
75
在PO模式之前,脚本只写一个test_*****.py的文件。这样写的缺点是所有代码在一个文件中,另一个文件对同一个操作再写一遍。并且代码量特别大。所以多文件区分PO模式应运而生。这样修改不同的功能,只要找到对应的文件即可,代码也变的轻便,易于理解。 创建一个测试项目,里面有base文件夹,scri ...
分类:
移动开发 时间:
2020-04-06 09:54:39
阅读次数:
84
https://blog.csdn.net/hjw199089/article/details/84713095 Lambda architecture and kappa architecture. From Mastering Azure Analytics by Zoiner Tejada G ...
分类:
移动开发 时间:
2020-04-05 22:38:29
阅读次数:
112
玉簪(学名:Hosta plantaginea (Lam.) Aschers.),又名白萼、白鹤仙,是百合科,玉簪属的多年生宿根植物。叶基生,成簇,卵状心形、卵形或卵圆形。花葶高40-80cm,具几朵至十几朵花;花单生或2-3朵簇生,长10-13cm,白色,芳香。蒴果圆柱状,有三棱。花果期8-10月 ...
分类:
其他好文 时间:
2020-04-04 20:45:11
阅读次数:
128
lambda x:x*x def f(x): return x*x def is_odd(n): return n % 2 == 1 L = list(filter(is_odd, range(1, 20))) L = list(filter(lambda x:x%2==1, range(1, 20 ...
分类:
其他好文 时间:
2020-04-04 14:55:15
阅读次数:
58
在做项目的时候,遇到这样的数据: "trends": [ { "name": "Rick Gates", "promoted_content": null, "query": "%22Rick+Gates%22", "tweet_volume": 135732, "url": "http://twi ...
分类:
编程语言 时间:
2020-04-03 13:47:18
阅读次数:
87
本人喜欢把一些实用的东东拿过来,写成文章或者收藏起来。于是乎... 直接上代码: .article { color: #000000; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: ...
分类:
Web程序 时间:
2020-04-03 13:47:00
阅读次数:
81