- 博客(20)
- 收藏
- 关注
原创 python自动化办公(3)——Excel一键创建图表
一些做运营的小伙伴门可能经常要在工作中制作非常多的图表,如果能够在不打开Excel文件的情况下就能一键生成想要的图表,是不是相当的节省时间呢?今天我们就来学习如何用python快速创建图表,我们需要用到的是xlrd,xlwt这两个读取和操作Excel表格的python库,具体代码如下:import xlwt,xlrdpath = r'D:\software\excel'data = ...
2020-01-03 19:49:22 1596 1
原创 python自动化办公(2)—— 快速合并与分析Excel文档
在工作中,我们经常需要将多个Excel文件合并到一个Excel文件中。当文件数量少时,我们可以通过复制粘贴完成。当Excel文件有上百个甚至上千个时,如何在1分钟之内完成呢?我们可以使用python中的pandas库快速合并Excel文件。步骤1:#遍历文件夹内所有文档的路径步骤2:#利用append纵向拼接数据步骤3:#利用concat横向拼接数据步骤4:#保存到新Excel...
2020-01-02 10:42:01 799
原创 python自动化办公(1)—— 批量合并word文档
上个月领导交给我一个非常紧急的任务,限我2天之内完成。其中有一项是将项目两年内的分析报告汇总到一篇报告中。我花了30分钟左右梳理了一下这些分析报告,竟然有200多份,每份分析报告大概5-10页。我粗略计算了工作量,每次操作需要打开子目录——>找到word文档——>全选复制——>粘贴到新文档——>调整格式——>核对检查,完成一次操作至少得3分钟。合并完这200多份报...
2020-01-02 08:54:37 3717 5
原创 中文关键词提取
# -*- coding: utf-8 -*-"""Created on Mon Jan 29 18:41:47 2018@author: loka"""import jiebafrom jieba import analysejieba.load_userdict("D:\\software\\development\\anaconda\\dictronary\\gzwl.txt"...
2019-10-04 17:15:03 221
原创 SMARTY 快速生成大量的静态网页
如何配置smarty请结合上一篇,我的路径放置也是随着上一篇的。配置smarty模板的储存位置,和一些的参数。smarty.ini.php<?phpinclude("smarty/libs/Smarty.class.php");$smarty = new Smarty();$smarty->template_dir="smarty/templates/";$sma...
2018-10-23 14:22:37 410
原创 smarty配置
看官网说最好不要把smarty放在根目录下,结果就遇到坑了。。。各种权限,路径问题。被弄的苦不堪呀,最后还是选择放在根目录下/home/www/htdocs/smarty下吧路径选择相对路径,什么bug都没了。include("smarty/libs/Smarty.class.php");$smarty = new Smarty();$smarty->template_di...
2018-10-22 22:00:26 235
原创 阿里云数据库连接失败的问题
参考链接:https://help.aliyun.com/knowledge_detail/60077.html?spm=a2c4g.11186631.2.1.4b565949BnOY7q 具体的图文事例看上面的链接就好,我讲几个关键的地方 我们连接远程数据库的数据,经常会出现 127.0.12.22 is not allowed to connect to this MySQL ...
2018-10-16 11:09:04 2155
原创 boostrap的表格
自动布局了,排的很好看<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>boostrap-table</title><link rel="stylesheet" href="ceshicss.cs
2018-08-07 21:07:13 302
原创 BOOTSTRAP----lead(引导主体副本)
先上对比的结果吧,上面的是添加了class=“lead”的效果。确实更好看了。引导主题副本与一般的字体效果对比。直接套用这些类确实比自己调css参数好看多了。...
2018-08-07 19:59:20 1375
原创 高中物理的题库里提取所有物理关键词
# -*- coding: utf-8 -*-"""Created on Mon Jan 29 18:41:47 2018@author: loka"""import jiebafrom jieba import analyseimport codecs# 引入TF-IDF关键词抽取接口tfidf = analyse.extract_tags#添加用户自定义词jieba.lo...
2018-08-07 19:49:03 762
原创 数据库中根据相似度匹配相似题目
# -*- coding: utf-8 -*-"""Created on Mon Feb 5 13:41:23 2018@author: loka"""import pandas as pdimport pymysqlimport pymysql as mdbimport jiebaimport codecs from jieba import analyse#连接数据库...
2018-08-07 19:48:52 4550
原创 pip更新失败
弄了一个上午,pip9.01升级到9.03,各种方法都试过。后来决定重新安装pipeasy_install pip直接搞定了
2018-03-26 12:59:49 3742 4
原创 (持续更新)python3的一些不同
3.20原:从sklearn.cross_validation导入train_test_split模块用于分割数据集from sklearn.model_selection import train_test_split
2018-03-20 11:35:21 438
原创 python3.6读取csv文件的方法
第一种:with open('C:\\Users\\loka\\.jupyter\\csv\\query_result.csv', 'r',encoding='UTF-8') as cv: cv_read = cv.read() print(cv_read)第二种:import pandas as pdimport numpy as npdf = pd.re
2018-02-02 15:21:11 4731
原创 python 3.6加入停用词
# coding:utf-8import jiebaimport jieba.analyseimport codecs#这里放停用词文档路径,txt文档编码未UTF-8stoplist = [line.strip() for line in codecs.open("./stopword.txt",encoding='utf-8')]segs=jieba.cut('北京附近
2018-02-01 09:51:51 2449
转载 python字符串操作(去非中文字符)
清理非中文def is_ustr(in_str): out_str='' for i in range(len(in_str)): if is_uchar(in_str[i]): out_str=out_str+in_str[i] else: out_str=out_str+' '
2018-01-30 14:18:21 11073
转载 hive-常用函数
字符串函数字符串长度函数:length Java代码 语法: length(string A) 返回值: int 说明:返回字符串A的长度 举例: hive> select length(‘abcedfg’) from dual; 7 字符串反转函数:reverse
2018-01-12 10:16:43 179
原创 小英,试题来源,有知识点,有自定标签
Select tt.custom_label,ts.school_name,ts.test_id,ts.type_name,ts.sequence_name,ts.year_name from ods_test_sources as ts left outer join ods_test_tests as tt on (ts.test_id=tt.id and ts.dt=20180110 and
2018-01-11 18:38:08 182
原创 小英,带图普清,ID,已审核未冻结带知识点
select tr.test_id from ods_test_resources as tr where tr.test_id in (select t.id from ods_test_tests t where t.dt=20180110 and t.department=1 and t.subject_id=3 and t.is_verify=1 and t.status=1 and t.
2018-01-11 11:25:07 164
转载 HIVE数据库查询优化
1.join的优化join语句在使用时,先进行join操作,再进行where语句,因此加更多where语句限制并不能加快hive数据库的查询速度。MAPJOIN注意事项:新版本中应该先使用set hive.auto.convert.join = true; 再添加/*+ MAPJOIN(b) */由于join操作是在where操作之前执行,所以当你在执行join时,wh
2018-01-09 09:49:52 476
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人