
Python/Perl/etc.
Yunhe_Feng
这个作者很懒,什么都没留下…
展开
-
import customized lib
import syssys.path.insert(0, '../utils/')from sort_dictionary_by_value import sort_dictionary_by_value原创 2022-06-25 00:24:07 · 288 阅读 · 1 评论 -
Notes for Creating LaTeX Table using Python
################## in LaTeX, replace :^) by :$\hat{\mkern6mu}$)# replace \ by $\backslash$# replace :{ by :\{# replace $ by \$#################原创 2021-11-22 08:22:26 · 768 阅读 · 0 评论 -
Using pip to install Python packages on Anaconda
Windows Platform:cd C:\Users\jack\AppData\Local\Continuum\Anaconda2\pythonw.exe C:\Users\yfeng14\AppData\Local\Continuum\Anaconda2\Scriptspip install package-nameLinux Platform:cd ~/anacon原创 2016-10-23 00:35:03 · 479 阅读 · 0 评论 -
Fill Countries in Python Basemap
I googled many Python methods to color countries in a world map. But most of them require additional Python packages, like cartopy, and shapelib. Because I am using Anaconda (Python 3.5) on Windows, i原创 2016-08-17 04:42:24 · 1635 阅读 · 0 评论 -
Crawl AJAX dynamic web page using Python 2.x and 3.x
The term AJAX is short for Asynchronous Javascript and XML. It uses the Javascript XMLHttpRequest function to create a tunnel between the client's browser and the server to transmit information back a原创 2016-06-25 05:36:42 · 793 阅读 · 0 评论 -
Crawl GB2312 encoded webpages with Python 3.x
The following code works well.from urllib.request import urlopen import bs4doc= urlopen("http://www.w3school.com.cn/html/html_tables.asp")soup = bs4.BeautifulSoup(doc,fromEncoding="GB2312")a=s原创 2016-06-25 01:44:36 · 741 阅读 · 0 评论 -
detect the encoding of files in Python
I found a very useful Python package for detecting the encoding of files. It's chardet. 1. install chardetpip install chardet2. an example of how to use itPython 2import urllibrawdata原创 2016-06-23 23:46:30 · 674 阅读 · 0 评论 -
round() Function in Python and Matlab
Python always round to nearest even.test_1 = np.around(3.5)test_2 = np.around(4.5)test_1 = 4test_2 = 4test_1 = round(3.5)test_2 = round(4.5)test_1 = 4test_2 = 5原创 2016-04-27 04:34:49 · 974 阅读 · 0 评论 -
Python 与 Matlab 矩阵操作对应表
Python 与 Matlab 矩阵操作对应表MatlabPythonnumel(X)X.sizesize(X, 2)X.shape[1]A.*BA*BA*BA.dot(B)X'X.conj().TX(1:5, :)X[0:5, :]X(1:2, 4:7)X[0:原创 2016-04-26 23:09:24 · 4827 阅读 · 0 评论 -
numpy返回array中元素的index
import numpya = numpy.array(([3,2,1],[2,5,7],[4,7,8]))itemindex = numpy.argwhere(a == 7)print (itemindex)print a原创 2016-03-27 11:45:54 · 79126 阅读 · 4 评论 -
Python 3.5 deleting specified files recursively
Starting with Python 3.5, glob module supports the '**' directive, which matches any files and zero or more directories or subdirectories if the 'recursive' is set as True. The following example sho原创 2016-10-11 01:25:31 · 302 阅读 · 0 评论 -
[A Weird Bug] caused by the name of Python script
I attempt to run a Python LDA module after 'pip install lda'. But there always occurs a weird bug: lda.py line 3 -- "no module named datasets". First, I thought the package of LDA are not installed co原创 2016-10-22 00:01:47 · 391 阅读 · 0 评论 -
Tips for writing efficient Python code
Find the difference of keys between two dictionariesSuppose two dictionaries A and B. We would like to find the keys in A but not in B.Bad example:import timeA = {}B = {}for i in range(1000):原创 2016-10-22 07:59:38 · 474 阅读 · 0 评论 -
Detect operating system types (Linux or Windows) using Python
If you use Dropbox to sync files between platforms, you may face the problem of editing Python codes on Windows, but execute the code on Linux. In this case, identifying the OS type inside Python code...原创 2018-12-06 11:01:12 · 552 阅读 · 0 评论 -
Change Font size when plotting using Python
import matplotlibmatplotlib.rcParams.update({'font.size': 22})原创 2017-09-18 01:29:45 · 926 阅读 · 0 评论 -
disable back button of browsers 禁用浏览器后退键
history.pushState(null, document.title, location.href); window.addEventListener('popstate', function (event) { history.pushState(null, document.title, location.href); }); window.location.ha原创 2017-06-09 23:40:29 · 1042 阅读 · 0 评论 -
PHP connects Hostinger MySQL database
After registering my domain on Hostinger, I tried to connect the Hostinger MySQL database from PHP script. Be careful about the server name:<?php $servername = "localhost"; // work $servername = "原创 2017-03-31 23:27:27 · 573 阅读 · 0 评论 -
Python calculate and plot correlation between multiple variables
import pandas as pdimport numpy as npimport matplotlib.pyplot as pltfrom matplotlib.collections import EllipseCollectiondata = pandas.DataFrame([["A", 4, 0, 1, 27], ["B"转载 2016-12-30 23:26:55 · 1474 阅读 · 0 评论 -
Examples of Python Matplotlib to plot bar
Examples of Python Matplotlib to plot barhttps://pythonspot.com/en/matplotlib-bar-chart/转载 2016-11-24 03:38:09 · 497 阅读 · 0 评论 -
return the index of a 'key' in Python dictionary
my_dict = {'a': 0, 'b': 1, 'c': 2}# python 3.xprint (list(my_dict.keys()).index('c'))# python 2.7print (my_dict.keys().index('c'))原创 2016-10-23 04:58:10 · 463 阅读 · 0 评论 -
Parallel Python for loop
An example on Windows:from joblib import Parallel, delayedimport multiprocessing data = range(100) def process_task(i): print (i)if __name__ == '__main__': num_cores = multiproces原创 2016-10-23 01:15:30 · 2504 阅读 · 0 评论 -
配置PyCharm(背景色+字体大小+解释器选择)
最近从Spyder转到PyCharm,对PyCharm进行配置。PyCharm共有三个版本,付费版本,community版本和education版本。首先配置PyCharm的背景,快捷键组合,视图模式和风格。使用快捷键Ctrl + "`"(该键位于键盘的左上角,和”~“同一个键位),即可开发上图配置选项。color Scheme: 配置背景颜色code style sche原创 2016-03-20 05:11:51 · 85107 阅读 · 0 评论 -
比较两个树是否完全相同
两种比较树是否相同的Python代码实现如下所示:代码1:class Node: _value = "" _left = None _right = None def hasLeftChild(self): if (self._left != None): return True else: return False def hasRightChild原创 2016-03-19 06:57:11 · 1647 阅读 · 0 评论 -
二叉树转化成Newick格式
Newick Format是表示树的一种方式,具体参见wikipedia https://en.wikipedia.org/wiki/Newick_format。一下代码表示了将二叉树转化成仅保留叶子节点的Newick格式。比如下图中的树转化成Newick格式为:(A,B,(C,D))实现的Python代码如下:class Node: value = "" leftChil原创 2016-03-19 03:54:35 · 6395 阅读 · 0 评论 -
Python批量重命名指定文件夹下文件的两种方法
#法一import ospath = "C://Python34//"for file in os.listdir(path): if os.path.isfile(os.path.join(path,file))==True: if file.find('.')<0: newname=file+'.jpg' os.re原创 2015-06-10 06:56:26 · 6510 阅读 · 0 评论 -
Python批量删除指定文件夹下的指定类型的文件
Python作为一种脚本语言,其非常适合文件级的各种操作。下面的代码可以批量删除指定文件夹下的全部特定类型(CSV类型)的文件。import sys, csv , operatorimport osimport globfor i in range(0, 20): path = "C:\\Python34\\Folder_" + str(i) for infile in glo原创 2015-06-09 11:59:20 · 8994 阅读 · 0 评论 -
Python最简单的图形编程
使用Python进行图像编程,要使用到Graphics库。Graphics库可以从http://mcsp.wartburg.edu/zelle/python/graphics.py获取。在Windows平台上将下载的graphics.py保存在C:\Python31\Lib\site-packages即可。原创 2015-06-07 23:53:46 · 22993 阅读 · 0 评论 -
使用Google Roads API抓取道路信息(java实现)
Google Roads API提供了强大的道路获取接口,用户只需调用相应的API就可以获取相应区域的道路坐标以及道路的限速信息。具体的调用方法如下:https://roads.googleapis.com/v1/snapToRoads?path=-35.27801,149.12958|-35.28032,149.12907|-35.28099,149.12929|-35.28144,14原创 2015-06-26 22:59:07 · 4974 阅读 · 0 评论 -
Python中的Lambda表达式小析
Lambda表达式在Python中经常使用到,在此总结下Lambda表达式的常用方法。首先,要明白Lambda表达在Python中是作为一个匿名函数的构造器而存在。其次,要明白Lambda表达式的常用场景是Lambda表达式对应函数的使用次数非常有限(因此,没有必要专门定义一个非匿名函数),同时保证了代码的简洁性。最简单的一个Lambda表达式例子和对应的非匿名函数:f原创 2015-06-06 06:33:49 · 16931 阅读 · 4 评论 -
Python多级排序(多属性排序)csv文件
处理csv文件时,经常用到多级或者多属性排序,我们可以使用如下方式轻松搞定多级排序。Python 2.x使用如下代码:先按照第一列即x[0]升序排序,再按照第二列即x[0]升序排序。如需降序排列,需在sorted函数体内加上reverse = True。import sys, csv , operatordata = csv.reader(open('C:\test.csv')原创 2015-06-06 03:53:45 · 14562 阅读 · 0 评论 -
static scoping and dynamic scoping
Static Scoping:With static scope, a variable always refers to its top-level environment. This is a propertyofthe program text and unrelated to the runtime call stack. Because matching a variable原创 2014-10-31 09:30:11 · 2282 阅读 · 0 评论 -
Shell编程学习进度
6/8上午chmod [auog][+-=][rwx] filechmod -R [XXX] file //R表示递归 recursionchown target_owner filechgrp target_owner file umask与chmod功能相反 默认数值为0022umask 0002 //valid before cl原创 2012-06-08 11:51:45 · 8207 阅读 · 0 评论 -
multi-level sort using Python
Python 2.x, not for Python 3.xsortedlist = sorted(data, key = lambda x: (x[0], int(x[6])))原创 2015-05-11 02:18:47 · 642 阅读 · 0 评论 -
评价聚类结果之entropy(熵值)和purity(纯度)
使用k-means算法对数据进行聚类之后,通常需要估计一下原创 2015-06-12 09:46:09 · 38705 阅读 · 1 评论 -
转变思维--使用Python生成Shell命令,批量执行程序
近日经常遇到在Linux shell中批量执行相似命令的情况。比如执行如下命令:gifsicle --delay=100 gif/App_1_hour_*_down.gif > combine_gif/App_1_hour_down.gifgifsicle --delay=100 gif/App_1_hour_*_up.gif > combine_gif/App_1_hour_up.gif原创 2015-06-13 10:35:59 · 4426 阅读 · 0 评论 -
Python跳过第一行读取文件内容
Python编程时,经常需要跳过第一行读取文件内容。比较容易想到是为每行设置一个line_num,然后判断line_num是否为1,如果不等于1,则进行读取操作。相应的Python代码如下:input_file = open("C:\\Python34\\test.csv")line_num = 0for line in islice(input_file, 1, None): line原创 2015-06-15 11:38:46 · 82914 阅读 · 0 评论 -
Python将数组(矩阵)存成csv文件,将csv文件读取为数组(矩阵)
Python处理csv文件时经常会用到讲csv文件整体读取为一个数组或者矩阵的情况,借助numpy包,可以使用如下代码简洁高效低实现:import numpymy_matrix = numpy.loadtxt(open("c:\\1.csv","rb"),delimiter=",",skiprows=0)将数组或者矩阵存储为csv文件可以使用如下代码实现:num原创 2016-02-18 04:02:09 · 135205 阅读 · 4 评论 -
Python实现冒泡排序、选择排序、插入排序、快速排序、归并排序、二分法查找算法(基于《算法导论》伪代码)
为加深对各种基础排序算法的理解,我基于Thomas H. Cormen等《算法导论》中的伪代码,用Python实现了冒泡排序、选择排序、插入排序、快速排序、归并排序、二分法查找算法。具体算法如下:冒泡排序:def bubbleSort(alist): for passnum in range(0, len(alist) - 1, 1): for i in原创 2016-02-17 10:11:59 · 8712 阅读 · 1 评论 -
Python代码的多线程改造
并行化处理已经成为了很多工程项目的需求。本文展示了如何使用threadpool包将普通的Python程序多线程化。import requestsimport bs4import timeimport threadpool# build data arraydata = []for e in range(10,20): data.append(str(e))def prin原创 2015-10-25 06:21:31 · 1197 阅读 · 0 评论 -
使用Python工具抓取网页
最近在做一个基于文本分析的项目,需要抓取相关网页进行分析。我使用了Python的request和beautifulsoup组件包抓取和解析网页。在抓取过程中发现了很多问题,这些问题是在抓取工作开始之前,不曾预料到的。比如,由于不同网页的解析过程可能不一致,这可能导致解析失败;再比如,由于访问服务器资源过于频繁,可能会导致connection closed by remote host错误的出现。如原创 2015-10-25 01:04:34 · 897 阅读 · 0 评论