- 博客(6)
- 收藏
- 关注
转载 python的most_common()函数
我们知道python内建模块的collections有很多好用的操作。比如:from collections import Counter#统计字符串# top n问题user_counter = Counter("abbafafpskaag")print(user_counter.most_common(3)) #[('a', 5), ('b', 2), ('f', 2)]print(user_counter['a']) # 5python里面实现most_common:.
2021-07-13 15:33:50 632
转载 随机种子 seed()
先来看一段代码,熟悉一下seed()的使用:import numpy as npnum = 0while (num < 5): np.random.seed(1) print(np.random.random()) num += 1print('-------------------------')num1 = 0np.random.seed(2)while (num1 < 5): print(np.random.random())...
2021-07-10 14:50:21 319
转载 Numpy中行向量的转置:.T
新建一个行向量yy = [0,0,0,1, 1 ,1 ,1, 1 ,1, 1, 1, 2 ,2 ,2, 2 ,2 ,3 ,3, 3, 3]>>> y=np.array([y])>>> yarray([[0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3]])y的转置为tt=np.array([y]).Tarray([[0], [0], [0], ...
2021-06-30 15:03:04 1689
原创 Python Pandas Dataframe.describe()用法及代码示例
Python是进行数据分析的一种出色语言,主要是因为以数据为中心的Python软件包具有奇妙的生态系统。 Pandas是其中的一种,使导入和分析数据更加容易。Pandas describe()用于查看一些基本的统计详细信息,例如数据帧的百分位数,均值,标准差等或一系列数值。当此方法应用于一系列字符串时,它将返回不同的输出,如以下示例所示。用法:DataFrame.describe(percentiles=None, include=None, exclude=None)参数:percen
2021-06-29 20:12:46 11381
转载 python @classmethod 的使用场合
官方解释:classmethod(function)classmethod是用来指定一个类的方法为类方法,没有此参数指定的类的方法为实例方法,使用方法如下class C: @classmethod def f(cls, arg1, arg2, ...): ...定义的一个时间类:class Data_test(object): day=0 month=0 year=0 def __init__(self,year=0,month=.
2021-06-23 11:10:59 294
原创 Flask-RESTful——fields模块
from flask.ext.restful import fields, marshaldata = { 'a': 100, 'b': 'foo' }mfields = { 'a': fields.Raw }marshal(data, mfields)OrderedDict([('a', 100)])marshal(data, mfields, envelope='data')OrderedDict([('data', OrderedDict([('a', 100)]))])Param.
2021-06-23 09:58:39 1133
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人