EasyDict
|
|
目录
检查目录,并生成一级目录
|
|
多级目录生成
|
|
R & W in TXT
np.loadtxt()
用于从文本加载数据。 文本文件中的每一行必须含有相同的数据。
|
|
- fname:文件名
- dtype:数据类型,默认float
- comments:注释
- delimiter:分隔符,默认是空格
- skiprows:跳过前几行,0是第一行,必须int
usecols
:要读取哪些列,0是第一列。例如,usecols = (1,4,5)将提取第2,第5和第6列。默认读取所有列。unpack
如果为True
,将分列读取。
|
|
TXT追加内容
|
|
文件操作
文件移动
|
|
pprint
it is used for pretty-print data structures.
Random
np.random.rand()
|
|
- rand函数根据给定维度生成[0,1)之间的数据,包含0,不包含1
- dn为每个维度
- 返回值为指定维度的数组
np.random.randn()
- randn函数返回具有标准正态分布的数据。
- dn为每个维度
- 返回值为指定维度的数组
np.random.randint()
numpy.random.randint(low, high, size)
- 返回开区间 [low, high)范围内的整数值
- 默认high是None,如果只有low,那范围就是[0,low)。如果有high,范围就是[low,high)
- size是输出数组的维度(形状),可以是列表,或者元组
np.random.choice()
numpy.random.choice(a, size)
- a可以是一个数或者一个array,如果是一个数则sample范围是【0,a);如果是array,则从中sample
- size为sample大小;如果size=(m,n,k),则采样$mnk$个。
String
数字补0
|
|
Plt
图片保存去除周边空白ref
|
|
bbox_inches =’tight’ 只能用于保存图片,不能用于显示。
Time
|
|
Zip
|
|
|
|
How to unzip?
Unzipping means converting the zipped values back to the individual self as they were. This is done with the help of “*” operator.
|
|
|
|
Parser
|
|
|
|
Matplotlib
5 Quick and Easy Data Visualizations in Python with Code
8 of the best articles on visualizing data
ElementTree
!!!!!所有的输入都必须是字符串!!!!!
|
|