gpt4 book ai didi

Python:float() 参数必须是字符串或数字,而不是 'pandas._libs.interval.Interval'

转载 作者:太空宇宙 更新时间:2023-11-04 04:12:56 27 4
gpt4 key购买 nike

我正在尝试从 Analytics Vidhya 做贷款预测的机器学习练习题。当我使用随机森林分类器时,它显示:

TypeError:float() argument must be a string or a number, not 'pandas._libs.interval.Interval'

代码:

train['Loan_Status']=np.where(train['Loan_Status']=='Y', 1,0)

train_test_data=[train,test]

#Gender Feature
for dataset in train_test_data:
dataset["Gender"]=dataset["Gender"].fillna('Male')
for dataset in train_test_data:
dataset["Gender"]=dataset["Gender"].map({ "Female" : 1 , "Male" : 0}).astype(int)

#Married Feature
for dataset in train_test_data:
dataset['Married']=dataset['Married'].fillna('Yes')
for dataset in train_test_data:
dataset['Married']=dataset['Married'].map({"Yes" : 1 , "No" : 0}).astype(int)

#Education Feature
for dataset in train_test_data:
dataset['Education']=dataset['Education'].map({'Graduate' : 1 , 'Not Graduate' : 0}).astype(int)

#Combine Applicant income and coapplicant income
for dataset in train_test_data:
dataset['Income']=dataset['ApplicantIncome']+dataset['CoapplicantIncome']
train['IncomeBand']= pd.cut(train['Income'] , 4)
print(train[['IncomeBand' , 'Loan_Status']].groupby(['IncomeBand'] , as_index=False).mean())

for dataset in train_test_data:
dataset.loc[dataset['Income'] <= 21331.5, 'Income'] =0
dataset.loc[(dataset['Income'] > 21331.5) & (dataset['Income'] <= 41221.0), 'Income'] =1
dataset.loc[(dataset['Income'] > 41221.0) & (dataset['Income'] <= 61110.5), 'Income'] =2
dataset.loc[dataset['Income'] > 61110.5, 'Income'] =3
dataset['Income']=dataset['Income'].astype(int)

# Loan Amount Feature
fillin=train.LoanAmount.median()
for dataset in train_test_data:
dataset['LoanAmount']=dataset['LoanAmount'].fillna(fillin)
train['LoanAmountBand']=pd.cut(train['LoanAmount'] , 4)
print(train[['LoanAmountBand' , 'Loan_Status']].groupby(['LoanAmountBand'] , as_index=False).mean())

for dataset in train_test_data:
dataset.loc[dataset['LoanAmount'] <= 181.75, 'LoanAmount'] =0
dataset.loc[(dataset['LoanAmount'] >181.75) & (dataset['LoanAmount'] <= 354.5), 'LoanAmount'] =1
dataset.loc[(dataset['LoanAmount'] > 354.5) & (dataset['LoanAmount'] <= 527.25), 'LoanAmount'] =2
dataset.loc[dataset['LoanAmount'] > 527.25, 'LoanAmount'] =3
dataset['LoanAmount']=dataset['LoanAmount'].astype(int)

#Loan Amount Term Feature
for dataset in train_test_data:
dataset['Loan_Amount_Term']=dataset['Loan_Amount_Term'].fillna(360.0)

Loan_Amount_Term_mapping={360.0 : 1 , 180.0 : 2 , 480.0 : 3 , 300.0 : 4 , 84.0 : 5 , 240.0 : 6, 120.0 :7 , 36.0:8 , 60.0 : 9, 12.0 :10}

for dataset in train_test_data:
dataset['Loan_Amount_Term']=dataset['Loan_Amount_Term'].map(Loan_Amount_Term_mapping)

# Credit History Feature
for dataset in train_test_data:
dataset['Credit_History']=dataset['Credit_History'].fillna(2)

# Property Area Feature
for dataset in train_test_data:
dataset['Property_Area']=dataset['Property_Area'].map({'Semiurban' : 0 , 'Urban' : 1 , 'Rural' : 2}).astype(int)

# Feature Selection
features_drop=['Self_Employed' , 'ApplicantIncome' , 'CoapplicantIncome', 'Dependents']
train=train.drop(features_drop, axis=1)
test=test.drop(features_drop, axis=1)
train.drop(['Loan_ID' , 'IncomeBand' , 'LoanAmountBand'] , axis=1)

X_train=train.drop('Loan_Status' , axis=1)
y_train=train['Loan_Status']
X_test=test.drop('Loan_ID' , axis=1).copy()

X_train.shape , y_train.shape , X_test.shape

clf = RandomForestClassifier(n_estimators=100)
clf.fit(X_train, y_train)
y_pred_random_forest = clf.predict(X_test)
acc_random_forest = round(clf.score(X_train, y_train) * 100, 2)
print (acc_random_forest)

X_train.dtypes

我不明白 float 错误是从哪里来的。非常感谢任何建议。

最佳答案

问题是类别数据类型的列。例如,这些可以使用 pd.cut 函数创建。随机森林分类器不能将这些作为输入,因此您需要将它们转换为数字。

这可以通过使用 cat.codes 最简单地完成。

在上面的代码中,IncomeBandLoanAmountBand 两列需要从类别更改为数字:

train['IncomeBand']= pd.cut(train['Income'] , 4).cat.codes
train['LoanAmountBand']=pd.cut(train['LoanAmount'] , 4).cat.codes

关于Python:float() 参数必须是字符串或数字,而不是 'pandas._libs.interval.Interval',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56018238/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com