摘要: /* Border styles */ #table-1 thead, #table-1 tr { border-top-width: 1px; border-top-style: solid; border-top-color: #a8bfde; } #table-1 { border-botto 阅读全文
posted @ 2021-05-27 00:35 介个车车烫屁股 阅读(763) 评论(0) 推荐(0)
摘要: plotnine包,Python版的ggplot2,可以实现绝大多数ggplot2的绘图功能,两者语法十分相似。 官方文档 https://plotnine.readthedocs.io/en/latest/ 安装 pip install plotnine 数据准备 from plotnine.da 阅读全文
posted @ 2021-05-27 00:32 介个车车烫屁股 阅读(577) 评论(0) 推荐(0)
摘要: es是基于Apache Lucene的开源分布式(全文)搜索引擎,,提供简单的RESTful API来隐藏Lucene的复杂性。特点: 1、分布式的实时文件存储,每个字段都被索引并可被搜索 2、分布式的实时分析搜索引擎 3、可以扩展到成百上千台服务器,处理PB级结构化或非结构化数据。 建立es连接 阅读全文
posted @ 2021-05-27 00:25 介个车车烫屁股 阅读(1534) 评论(0) 推荐(0)
摘要: 目前比较常见的打包exe方法都是通过Pyinstaller来实现的,当然,这个库貌似也只有windows环境能用。 为什么要打包? Python脚本无法在没有安装Python的机器上运行,只有将脚本打包成exe文件,才能在没有安装Python的电脑上使用。 安装Pyinstaller 首先我们要先安 阅读全文
posted @ 2021-05-27 00:03 介个车车烫屁股 阅读(125) 评论(0) 推荐(0)