自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

转载 pandas.errors.ParserError: Error tokenizing data. C error: EOF inside string starting at line 1

错误提示:pandas.errors.ParserError: Error tokenizing data. C error: EOF inside string starting at line 15945解决方法:import pandas as pdimport csvdf = pd.read_csv(csvfile, quoting=csv.QUOTE_NONE, encoding...

2019-07-18 09:55:33 5019 1

原创 leetcode数组, python实现

矩阵置零给定一个 m x n 的矩阵,如果一个元素为 0,则将其所在行和列的所有元素都设为 0。请使用原地算法。示例 1:输入: [ [1,1,1], [1,0,1], [1,1,1]]输出: [ [1,0,1], [0,0,0], [1,0,1]]示例 2:输入: [ [0,1,2,0], [3,4,5,2], [1,3,1,5]]...

2019-07-16 15:31:20 171

原创 统计数据的种类和各种类的数量 value_count()

df_train = pd.read_csv('train.csv')打印数据表头print(df_train.columns)对某列中的不同数据进行统计并打印TA:906 Gd:488 Ex:52 Fa:14print(" ExterQual", df_train['ExterQual'].value_counts())...

2019-07-15 11:25:50 1422

原创 AttributeError: module 'tensorflow' has no attribute 'constant'

如题,遇到了这个错误… AttributeError: module 'tensorflow' has no attribute 'constant'服辽…把文件名(python filename)设置成了tensorflow解决: 改一下名字

2019-07-11 17:11:53 1965 1

原创 栈实现队列

思路:从FILO到FIFO的操作,出栈指定0即可class MyQueue(object): def __init__(self): """ Initialize your data structure here. """ self.stack = [] def push(self, x): "...

2019-04-24 22:36:26 100

原创 ValueError: Unknown label type: 'continuous'

调用sklearn_kneighbor分类模型时,若未对数据进行处理,会出现数据label错误,ValueError: Unknown label type: ‘continuous’解决方法: 使用.astype(‘int’) 将label转换为int型from sklearn.neighbors import KNeighborsClassifierknn_class = KNei...

2019-04-20 16:44:57 24562

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除