【发布时间】:2023-04-04 19:46:01
【问题描述】:
我在以下代码中收到此错误。我收到的错误没有给我任何地址的线索。请帮忙。
错误:
TypeError: '
代码:
from pandas import read_csv
from numpy import set_printoptions
from sklearn.preprocessing import MinMaxScaler
filename = 'Data/pima-indians-diabetes.csv'
names = ['preg', 'plas', 'pres', 'skin', 'test', 'mass', 'pedi', 'age', 'class']
df = read_csv(filename,names=names)
array = df.values
X = array[:,:8]
Y = array[:,8]
scaler = MinMaxScaler(feature_range=(0,1))
reScaledX = scaler.fit_transform(X)
print(reScaledX)
【问题讨论】:
-
你能发布一个指向你的数据集的链接吗?
标签:
python
machine-learning
rescale
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Python 重新缩放数据 - Python技术站