摘要: def cut_text(text,lenth): textArr = re.findall('.{'+str(lenth)+'}', text) textArr.append(text[(len(textArr)*lenth):]) return textArr print(cut_text('123456789abcdefg',3)) 阅读全文
posted @ 2018-10-16 15:35 六盘水月照 阅读(989) 评论(0) 推荐(0) 编辑
摘要: f=open('test.txt','a+',encoding='utf-8') for index,row in cxzg.iterrows(): text=str(row['text']) text=text.encode('gb18030','ignore').decode('gbk','ignore') qgdict=client.sentimentClassif... 阅读全文
posted @ 2018-10-16 15:32 六盘水月照 阅读(879) 评论(0) 推荐(0) 编辑
摘要: def biliget(cid): headers = { "Accept": "*/*", "Accept-Language": "zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3", "User-Agent": "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:55.0) G... 阅读全文
posted @ 2018-10-16 15:31 六盘水月照 阅读(1334) 评论(0) 推荐(0) 编辑
摘要: import sys #doc2vev import gensim import sklearn import numpy as np from gensim.models.doc2vec import Doc2Vec, LabeledSentence TaggededDocument = gensim.models.doc2vec.TaggedDocument def get... 阅读全文
posted @ 2018-10-16 15:30 六盘水月照 阅读(3383) 评论(0) 推荐(0) 编辑
摘要: import codecs #主题模型 from gensim import corpora from gensim.models import LdaModel from gensim import models from gensim.corpora import Dictionary te = [] fp = codecs.open('input.txt','r') for line i... 阅读全文
posted @ 2018-10-16 15:29 六盘水月照 阅读(4804) 评论(0) 推荐(0) 编辑
摘要: 偶得李春芬先生书信一函,为李先生与老友谈其自传小书和生平做人以及往事回忆等,其谦虚和正派品质值得我们学习与纪念,因此谨录于下。李春芬(1912—1996),江苏兴化白驹镇人(现属大丰) ,我国近代区域地理学的主要奠基人。1937年毕业于中央大学地理系并留校任教。后考英国庚款留学生后于1940年转往加 阅读全文
posted @ 2018-03-17 19:36 六盘水月照 阅读(310) 评论(1) 推荐(0) 编辑
摘要: 第一次用STATA,以前一直搞SPSS,简直是生产力革命啊。 记下写的第一个命令 也是实现了一个probit回归 阅读全文
posted @ 2017-07-11 22:28 六盘水月照 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 资料主要基于人人网用户543447982和人人网用户471370566的贡献 【中国通史(一)】 13年秋 【中国史学史】13年秋 【中国历史文选(上)】13年秋 【中国通史(二)】 14年春 【中国史学史】 14年春 【世界通史(一)】 14年春 【史学概论】14年春 【中国历史文选(下)】14年 阅读全文
posted @ 2017-06-27 18:39 六盘水月照 阅读(1390) 评论(0) 推荐(0) 编辑
摘要: 很久没用arcpy了,碰了好几次壁,把这次做的贴上来,以备下次可以跳过这些简单的问题 重点在于计算地理中心函数的第一个变量无需加.shp。 阅读全文
posted @ 2017-05-29 10:32 六盘水月照 阅读(917) 评论(0) 推荐(0) 编辑
摘要: 1.将csv文件在Excel中打开,并重新保存为csv。 2.将csv文件导入到sqlite,使用sqlite作为数据来源。 标准格式如下 阅读全文
posted @ 2017-05-23 23:04 六盘水月照 阅读(5395) 评论(0) 推荐(0) 编辑