python
Tyanw
这个作者很懒,什么都没留下…
展开
-
np.sum 结果为nan, np.isnan出现TypeError
注意检查是否array中有nan值,如果有需要removeremove方法:array[~np.isnan(array)]如在使用np.isnan()是出现:TypeError: ufunc 'isnan' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''检查array原创 2021-04-14 10:11:58 · 987 阅读 · 0 评论 -
TypeError: ‘NoneType‘ object is not iterable
出现原因:None出现在了iterable的datatype中,比如出现在了set或者for循环e.g.[1,2].append([3,4]) #-- Noneset(None) #-- None原创 2021-04-14 10:07:05 · 391 阅读 · 0 评论 -
str replace
若要更改原string,需重新赋值a = 'abc'print(a.replace('a', ''))# result: 'bc'print(a)# result: 'abc'a = a.replace('a', '')print(a)# result: 'bc'原创 2020-10-27 18:02:02 · 122 阅读 · 0 评论 -
Python 特征选择方法总结
【机器学习】特征选择(Feature Selection)方法汇总:过滤法:Pearson相关系数,Chi2验证,MIC,距离相关系数,方差选择法包装发:前向搜索,后向搜索,递归特征消除法嵌入法:加入惩罚项特征选择 (feature_selection)more:Embedded: L1-based feature selection, randomized sparse models, tree-based...原创 2020-08-07 10:26:36 · 577 阅读 · 0 评论 -
Python常用Library User Guide
sklearnpandasNumPyNumPy中文SciPystatsmodelsmatplotlib原创 2020-08-06 09:36:18 · 263 阅读 · 0 评论 -
Python list 根据list中的值查找索引
alist.index(x[, start[, end]])返回查找的值第一次出现的indexstart & end:alist.index('x',0,3)返回 ‘x’ 在slice内第一次出现的位置原创 2020-08-05 13:45:35 · 3452 阅读 · 0 评论 -
Python 判断list/dataframe是否为空
list1 = []#method 1if not len(list1): print('empty')else: print('not empty')#method 2if not list1: print('empty')else: print('not empty')原创 2020-08-04 14:06:43 · 778 阅读 · 0 评论 -
matplotlib color &次坐标轴
color = 'colorname'fig, ax1 = plt.subplots() ax2 = ax1.twinx() ax1.plot(x,y) ax2.plot(x, y, color='darkorange')原创 2020-07-16 09:54:35 · 183 阅读 · 0 评论