Python学习心得

Posted hdumusk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python学习心得相关的知识,希望对你有一定的参考价值。

# Data Preprocessing Template

# Importing the libraries
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd

#Importing the dataset
dataest = pd.read_csv(‘Data.csv‘)
X = dataest.iloc[:,:-1].values #自变量 0到-1列为止,所以输出到-2列
y = dataest.iloc[:,3].values # 因变量 此处3代表第四列
# Taking care of missing data
from sklearn.preprocessing import Imputer
imputer = Imputer(missing_values = ‘NAN‘,strategy =‘mean‘,axis = 0)
imputer = imputer.fit(X[:,1:3])
X[:,1:3] = imputer.transform(X[:,1:3])

 

实现对一个数据中缺失数据的填补,在缺失处放上平均值。












以上是关于Python学习心得的主要内容,如果未能解决你的问题,请参考以下文章

python学习心得

python学习心得-第二天

自学python 经验学习心得分享

python学习心得2019/9/25

Python的学习心得

Python学习心得 : 更新列表