代码之家  ›  专栏  ›  技术社区  ›  Pumpkin C

R中的特征缩放

  •  -1
  • Pumpkin C  · 技术社区  · 7 年前

    我想使用caret包扩展我的功能 火车[11]:是我的因变量

    library(caret)
    # calculate the pre-process parameters from the dataset
    preprocessParams <- preProcess(train[,1:10], method = "range")
    # transform the dataset using the parameters
    train_Scaled <-predict(pp, train[,1:10])
    # summarize the transformed dataset
    summary(train_Scaled)
    

    因此,我的train_Scaled数据帧将缩放10个自变量,但不再有因变量。如何将因变量附加到新的train\u比例数据帧?非常感谢。

    1 回复  |  直到 6 年前
        1
  •  0
  •   Lukasz    7 年前
    cbind(train_Scaled, train[,11])