以一个家电卖场中的电视销售数据为背景,来对各种品牌,各种颜色的电视的销量和销售额,进行各种各样角度的分析,首先建立电视销售的索引,然后 添加几条销售记录 PUT /tvs { "mappings": { "sales": { "properties": { "price": { "type": "l ...
分类:
其他好文 时间:
2017-07-01 11:02:54
阅读次数:
1022
histogram >>> a = numpy.arange(5) >>> hist, bin_edges = numpy.histogram(a,density=False) >>> hist, bin_edges (array([1, 0, 1, 0, 0, 1, 0, 1, 0, 1], dt... ...
Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the hist ...
分类:
其他好文 时间:
2017-06-23 23:48:06
阅读次数:
223
1 def histogram(s): 2 d = dict() 3 for i in s: 4 5 d[i] = d.get(i, 0) 6 d[i] = d[i] + 1 7 return d 8 9 print(histogram('fuckfuckfuck')) ...
分类:
其他好文 时间:
2017-06-23 18:23:15
阅读次数:
97
昨天看岛娘直播解题,看到很经典的一题Largest Rectangle in Histogram 题目地址:https://leetcode.com/problems/largest-rectangle-in-histogram/#/description 解法: 从左向右扫描矩形柱,当右边高于左边 ...
分类:
其他好文 时间:
2017-06-20 18:12:00
阅读次数:
137
聚合结果的排序 默认:桶会根据 doc_count 降序排列。 内置排序: 设置按doc_count升序排序:注意order,_count 其他排序关键字: _count 按文档数排序。对 terms 、 histogram 、 date_histogram 有效。 _term 按词项的字符串值的字 ...
分类:
编程语言 时间:
2017-06-16 13:25:06
阅读次数:
232
按时间统计:date_histogram 注意,这种写法在数字字段没有问题,但是在文本字段使用之前必须先把对应字段的fielddata设为true才可以。否则会报错: 注意,设置了fielddata会消耗大量内存。 返回空buckets:设置参数 min_doc_count 限制返回时间范围:设置参 ...
分类:
其他好文 时间:
2017-06-15 17:21:43
阅读次数:
189
Eviews 操作 1、参数估计, 残差平方和等 Quick ——》Estimate equation——》输入:变量名 所选模型 ——》(stats,统计值)(Resids残差图)——》(方程 ) Proc ——》Make Model ——》Text 2、原始函数图 双击变量——》view——》G ...
分类:
其他好文 时间:
2017-06-14 23:29:17
阅读次数:
263
[20170612]FOR ALL COLUMNS SIZE repeat(12c).txt--//昨天看了https://jonathanlewis.wordpress.com/2017/06/01/histogram-upgrade-2/,提到了直方图的问题,--//特别是FOR ALL COL ...
分类:
其他好文 时间:
2017-06-12 22:19:40
阅读次数:
217
[20170612]FOR ALL COLUMNS SIZE repeat(11g).txt--//昨天看了https://jonathanlewis.wordpress.com/2017/06/01/histogram-upgrade-2/,提到了直方图的问题,--//特别是FOR ALL COL ...
分类:
其他好文 时间:
2017-06-12 22:14:44
阅读次数:
270