kaggle入门(二)——Spaceship Titanic

Spaceship Titanic | KagglePredict which passengers are transported to an alternate dimensionhttps://www.kaggle.com/competitions/spaceship-titanic贴链接,照搬了新手教程的随机森林算法。

要继续学习numpy和pandas 这两个包了,还有一些数学知识和现代算法,快四月了,都要加油呀!!!

# This Python 3 environment comes with many helpful analytics libraries installed
# It is defined by the kaggle/python Docker image: https://github.com/kaggle/docker-python
# For example, here's several helpful packages to load

import numpy as np # linear algebra
import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv)

# Input data files are available in the read-only "../input/" directory
# For example, running this (by clicking run or pressing Shift+Enter) will list all files under the input directory

import os
for dirname, _, filenames in os.walk('/kaggle/input'):
    for filename in filenames:
        print(os.path.join(dirname, filename))

# You can write up to 20GB to the current directory (/kaggle/working/) that gets preserved as output when you create a version using "Save & Run All" 
# You can also write temporary files to /kaggle/temp/, but they won't be saved outside of the current session

train_data = pd.read_csv("/kaggle/input/spaceship-titanic/train.csv")
train_data.head()

test_data = pd.read_csv("/kaggle/input/spaceship-titanic/test.csv")
test_data.head()

b=0
for i in range(8693):
    b=b+train_data.iloc[i]['Age']
b=b/8693
print(b)

a=0
for i in range(8693):
    if train_data.iloc[i]['VIP']==True and train_data.iloc[i]['Transported']==True:
        a=a+1
print(a/8692)

a=0
for i in range(8693):
    if train_data.iloc[i]['CryoSleep']==True and train_data.iloc[i]['Transported']==True:
        a=a+1
print(a/8692)

a=0
for i in range(8693):
    if train_data.iloc[i]['HomePlant']=='Earth' and train_data.iloc[i]['Transported']==True:
        a=a+1
print(a/8692)

from sklearn.ensemble import RandomForestClassifier

y = train_data["Transported"]

features = ["HomePlanet", "CryoSleep", "VIP"]
X = pd.get_dummies(train_data[features])
X_test = pd.get_dummies(test_data[features])

model = RandomForestClassifier(n_estimators=100, max_depth=5, random_state=1)
model.fit(X, y)
predictions = model.predict(X_test)

output = pd.DataFrame({'PassengerId': test_data.PassengerId, 'Transported': predictions})
output.to_csv('submission.csv', index=False)
print("Your submission was successfully saved!")

  • 0
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 4
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值