let option = { color:['#FFD700','#00CED1','#32CD32','#1E90FF'], //环形颜色 tooltip: { trigger: 'item', formatter: '{a} <br/>{b}: {c} ({d}%)' }, graphic: [ ...
分类:
其他好文 时间:
2020-02-08 00:07:45
阅读次数:
351
1.下载 最初是常规方法 pip install pyecharts 发现总是下载失败,网上说是由于墙的原因,下载时会出现断线和速度过慢的问题导致下载失败,所以建议通过清华镜像来进行下载: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple ...
分类:
其他好文 时间:
2020-02-07 16:24:36
阅读次数:
150
$("body,html").css({"position":"fixed","overflow-y":"hidden"}); 禁止滑动的时候 $("body,html").css({"position":"static","overflow-y":"scroll"}); 可以滑动的时候 感觉禁止滑 ...
分类:
其他好文 时间:
2020-02-07 14:54:31
阅读次数:
73
BS的应用在生活中已经非常常见,我们打车,叫外卖,查个地图之类的都会查询附近的相关坐标位置,mongodb提供了原生的二维地图查询,极大地方便了大家的开发。 假定我们有一个定义了位置信息的集合location,给定a,b,c,d节点 db.location.find() { "_id" : "A", ...
分类:
数据库 时间:
2020-02-07 12:21:20
阅读次数:
90
Given a string s of '(' , ')' and lowercase English characters. Your task is to remove the minimum number of parentheses ( '(' or ')', in any position ...
分类:
其他好文 时间:
2020-02-06 14:49:15
阅读次数:
69
/* 通用样式 */ body,p,ul,ol,dl,dd,hr,h1,h2,h3,h4,h5,h6,figure,ul,ol,th,td,button,input,fieldset,legend,textarea,option{margin: 0;padding: 0;} table{border ...
分类:
Web程序 时间:
2020-02-05 18:38:21
阅读次数:
275
本文引自 https://blog.csdn.net/caideb/article/details/81632154 cnblog的排版好看很多,所以在这里建一篇分享博客。 扩展字典中的词会被筛选出来,扩展停止词中的词会被过滤掉 1.没有加入扩展字典 停止词字典用法 1) ik分词器 [root@l ...
分类:
其他好文 时间:
2020-02-05 13:48:40
阅读次数:
158
1、题目 35. Search Insert Position Easy 1781214Add to ListShare Given a sorted array and a target value, return the index if the target is found. If not, ...
分类:
其他好文 时间:
2020-02-05 12:03:43
阅读次数:
66
习题1.9 有序数组的插入 (20分) 本题要求将任一给定元素插入从大到小排好序的数组中合适的位置,以保持结果依然有序。 函数接口定义: bool Insert( List L, ElementType X ); 其中List结构定义如下: typedef int Position; typedef ...
分类:
编程语言 时间:
2020-02-04 23:23:35
阅读次数:
123
本文为PCL官方教程的Registration模块的中文简介版。 An Overview of Pairwise Registration 点云配准包括以下步骤: from a set of points, identify interest points (i.e., keypoints) tha ...
分类:
编程语言 时间:
2020-02-04 18:27:29
阅读次数:
196