TypeError:无法使用此索引类型执行__sub__:<class'pandas.core.indexes.base.index'=“”>

时间:2017-12-15 14:37:06

标签: python

我试图运行有关成人人口普查数据的示例代码。 当我运行这段代码时:

X_train, X_test, y_train, y_test = cross_validation.train_test_split(encoded_data[encoded_data.columns - ["Target"]], encoded_data["Target"], train_size=0.70, random_state = 42)
scaler = preprocessing.StandardScaler()
X_train = pd.DataFrame(scaler.fit_transform(X_train.astype("f64")), columns=X_train.columns)
X_test = scaler.transform(X_test.astype("f64"))

我一直收到这个错误:

  2101     def __sub__(self, other):
   2102         raise TypeError("cannot perform __sub__ with this index type: "
-> 2103                         "{typ}".format(typ=type(self)))
   2104 
   2105     def __and__(self, other):

TypeError: cannot perform __sub__ with this index type: <class 'pandas.core.indexes.base.Index'>

我目前正在使用anaconda python27

1 个答案:

答案 0 :(得分:0)

尝试一下:

X_test = scaler.transform(X_test.astype("float64"))