- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试了针对this question而发布的答案,但是错误没有改变。我试图以相同的方式预处理训练集和测试集。它们来自两个不同的文件,我不确定我的老师是否会把我混合在一起,所以在拆分它们之前进行预处理并不是一个真正的选择。为什么predict
行第一次在训练集上起作用,而在测试集上却不起作用?除了行中的各个值和行的总数之外,这两个数据框的结构应相同。
##### Load libraries #####
library(readr)
library(caret)
###### Read in data ######
training = read_csv("~/Machine Learning 2/M1/buad5132-m1-training-data.csv")
test = read_csv("~/Machine Learning 2/M1/buad5132-m1-test-data.csv")
##### Preprocessing #####
### Change column classes
#Training
training$INDEX = as.factor(training$INDEX)
training$TARGET_FLAG = as.factor(training$TARGET_FLAG)
training$PARENT1 = as.factor(training$PARENT1)
training$MSTATUS = as.factor(training$MSTATUS)
training$SEX = as.factor(training$SEX)
training$EDUCATION = as.factor(ifelse(training$EDUCATION == "<High School", "Less than High School", training$EDUCATION))
training$JOB = as.factor(training$JOB)
training$CAR_USE = as.factor(training$CAR_USE)
training$CAR_TYPE = as.factor(training$CAR_TYPE)
training$RED_CAR = as.factor(training$RED_CAR)
training$REVOKED = as.factor(training$REVOKED)
training$INCOME = suppressWarnings(as.numeric(gsub("[^0-9.]", "", training$INCOME)))
training$HOME_VAL = suppressWarnings(as.numeric(gsub("[^0-9.]", "", training$HOME_VAL)))
training$OLDCLAIM = suppressWarnings(as.numeric(gsub("[^0-9.]", "", training$HOME_VAL)))
training$BLUEBOOK = suppressWarnings(as.numeric(gsub("[^0-9.]", "", training$BLUEBOOK)))
training$URBANICITY = ifelse(grepl("Urban", training$URBANICITY), "Urban", "Rural")
training$URBANICITY = as.factor(training$URBANICITY)
#Test
test$INDEX = as.factor(test$INDEX)
test$TARGET_FLAG = as.factor(test$TARGET_FLAG)
test$PARENT1 = as.factor(test$PARENT1)
test$MSTATUS = as.factor(test$MSTATUS)
test$SEX = as.factor(test$SEX)
test$EDUCATION = as.factor(ifelse(test$EDUCATION == "<High School", "Less than High School", test$EDUCATION))
test$JOB = as.factor(test$JOB)
test$CAR_USE = as.factor(test$CAR_USE)
test$CAR_TYPE = as.factor(test$CAR_TYPE)
test$RED_CAR = as.factor(test$RED_CAR)
test$REVOKED = as.factor(test$REVOKED)
test$INCOME = suppressWarnings(as.numeric(gsub("[^0-9.]", "", test$INCOME)))
test$HOME_VAL = suppressWarnings(as.numeric(gsub("[^0-9.]", "", test$HOME_VAL)))
test$OLDCLAIM = suppressWarnings(as.numeric(gsub("[^0-9.]", "", test$HOME_VAL)))
test$BLUEBOOK = suppressWarnings(as.numeric(gsub("[^0-9.]", "", test$BLUEBOOK)))
test$URBANICITY = ifelse(grepl("Urban", test$URBANICITY), "Urban", "Rural")
test$URBANICITY = as.factor(test$URBANICITY)
### Dummy variables
#Training
trainDmyParams = dummyVars(~., training[,-c(1,2)])
training.dmy = as.data.frame(predict(trainDmyParams, training[,-c(1,2)]))
training.dmy$TARGET_FLAG = training$TARGET_FLAG
names(training.dmy) = make.names(names(training.dmy))
#Test
testDmyParams = dummyVars(~., test[,-c(1,2)])
test.dmy = as.data.frame(predict(testDmyParams, test[,-c(1,2)]))
test.dmy$TARGET_FLAG = test$TARGET_FLAG
names(test.dmy) = make.names(names(test.dmy))
### Standardization and imputation
#Training
preProcessTrain = preProcess(training.dmy, method = c("center", "scale", "bagImpute"))
training.prepped = predict(preProcessTrain, training.dmy)
#Test
preProcessTest = preProcess(test.dmy, method = c("center", "scale", "bagImpute"))
test.prepped = predict(preProcessTest, test.dmy) # <--- error occurs on this line
Error in UseMethod("predict") : no applicable method for 'predict' applied to an object of class "NULL"
最佳答案
@duckmayr我无法在评论中加入所有内容。 str(preProcessTest)
的完整输出太长了,无法在此处发布。几分钟后,我实际上将其停止,因此我不确定运行需要多长时间。在下面,我有输出的前几行,但是我不知道该怎么做。此后,它将继续输出更多相同内容,以显示bagImpute
在做什么。我应该注意,str(preProcessTrain)
看起来与str(preProcessTest)
非常相似,并且当进入predict
时,它可以工作。
List of 21
$ dim : int [1:2] 0 47
$ bc : NULL
$ yj : NULL
$ et : NULL
$ invHyperbolicSine: NULL
$ mean : Named num [1:46] 1.63e-01 4.50e+01 7.17e-01 1.04e+01 6.03e+04 ...
..- attr(*, "names")= chr [1:46] "KIDSDRIV" "AGE" "HOMEKIDS" "YOJ" ...
$ std : Named num [1:46] 4.87e-01 8.53 1.12 4.17 4.70e+04 ...
..- attr(*, "names")= chr [1:46] "KIDSDRIV" "AGE" "HOMEKIDS" "YOJ" ...
$ ranges : NULL
$ rotation : NULL
$ method :List of 4
..$ center : chr [1:46] "KIDSDRIV" "AGE" "HOMEKIDS" "YOJ" ...
..$ scale : chr [1:46] "KIDSDRIV" "AGE" "HOMEKIDS" "YOJ" ...
..$ bagImpute: chr [1:46] "KIDSDRIV" "AGE" "HOMEKIDS" "YOJ" ...
..$ ignore : chr "TARGET_FLAG"
$ thresh : num 0.95
$ pcaComp : NULL
$ numComp : NULL
$ ica : NULL
$ wildcards :List of 2
..$ PCA: chr(0)
..$ ICA: chr(0)
$ k : num 5
$ knnSummary :function (x, ...)
$ bagImp :List of 46
..$ KIDSDRIV :List of 2
.. ..$ var : chr "KIDSDRIV"
.. ..$ model:List of 6
.. .. ..$ y : num(0)
.. .. ..$ X : NULL
.. .. ..$ mtrees:List of 10
.. .. .. ..$ :List of 1
.. .. .. .. ..$ btree:List of 10
.. .. .. .. .. ..$ frame :'data.frame': 1 obs. of 8 variables:
.. .. .. .. .. .. ..$ var : Factor w/ 1 level "<leaf>": 1
.. .. .. .. .. .. ..$ n : int 0
.. .. .. .. .. .. ..$ wt : num 0
.. .. .. .. .. .. ..$ dev : num 0
.. .. .. .. .. .. ..$ yval : num NaN
.. .. .. .. .. .. ..$ complexity: num NaN
.. .. .. .. .. .. ..$ ncompete : int 0
.. .. .. .. .. .. ..$ nsurrogate: int 0
.. .. .. .. .. ..$ call :List of 1
.. .. .. .. .. .. ..$ na.action: NULL
.. .. .. .. .. ..$ terms :Classes 'terms', 'formula' language y ~ AGE + HOMEKIDS + YOJ + INCOME + PARENT1.No + PARENT1.Yes + HOME_VAL + MSTATUS.Yes + MSTATUS.z_No + SEX.M + SE| __truncated__ ...
.. .. .. .. .. .. .. ..- attr(*, "variables")= language list(y, AGE, HOMEKIDS, YOJ, INCOME, PARENT1.No, PARENT1.Yes, HOME_VAL, MSTATUS.Yes, MSTATUS.z_No, SEX.M, SEX.z_F,| __truncated__ ...
.. .. .. .. .. .. .. ..- attr(*, "factors")= int [1:47, 1:46] 0 1 0 0 0 0 0 0 0 0 ...
.. .. .. .. .. .. .. .. ..- attr(*, "dimnames")=List of 2
.. .. .. .. .. .. .. .. .. ..$ : chr [1:47] "y" "AGE" "HOMEKIDS" "YOJ" ...
.. .. .. .. .. .. .. .. .. ..$ : chr [1:46] "AGE" "HOMEKIDS" "YOJ" "INCOME" ...
.. .. .. .. .. .. .. ..- attr(*, "term.labels")= chr [1:46] "AGE" "HOMEKIDS"
summary(preProcessTrain)
Length Class Mode
dim 2 -none- numeric
bc 0 -none- NULL
yj 0 -none- NULL
et 0 -none- NULL
invHyperbolicSine 0 -none- NULL
mean 46 -none- numeric
std 46 -none- numeric
ranges 0 -none- NULL
rotation 0 -none- NULL
method 4 -none- list
thresh 1 -none- numeric
pcaComp 0 -none- NULL
numComp 0 -none- NULL
ica 0 -none- NULL
wildcards 2 -none- list
k 1 -none- numeric
knnSummary 1 -none- function
bagImp 46 -none- list
median 0 -none- NULL
data 0 -none- NULL
rangeBounds 2 -none- numeric
summary(preProcessTest)
Length Class Mode
dim 2 -none- numeric
bc 0 -none- NULL
yj 0 -none- NULL
et 0 -none- NULL
invHyperbolicSine 0 -none- NULL
mean 46 -none- numeric
std 46 -none- numeric
ranges 0 -none- NULL
rotation 0 -none- NULL
method 4 -none- list
thresh 1 -none- numeric
pcaComp 0 -none- NULL
numComp 0 -none- NULL
ica 0 -none- NULL
wildcards 2 -none- list
k 1 -none- numeric
knnSummary 1 -none- function
bagImp 46 -none- list
median 0 -none- NULL
data 0 -none- NULL
rangeBounds 2 -none- numeric
关于r - UseMethod(“predict”)中的错误:没有适用于“predict”的适用方法应用于类“NULL”的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59696573/
我写了几个命令来转换数据框,但我想将我写的代码简化为四个部分。第 1,2 和 3 部分用于计算第 1、2 和 3 列(计算每列重复值的次数,并完成 0 和三列最大值之间的缺失数)。第四部分是加入前面的
我试图理解应用于函数的类型参数。 我想在下面的方法中使用通用类型,但为了我的理解使用 String 和 Int。 当我如下定义一个函数时 def myfunc[Int](f:String => I
我有一个像下面这样的 DIV: // link to some js .js 在 div 中呈现最新的文章摘要。然而,它在 Calibri
我在 GridView 中有以下列,一列是日期,另一列是美元金额。我应用了格式并将 HtmlEncode 属性设置为 false,但值仍然未格式化: 这就是这些值在 GridView 中的显示方式
假设我已经定义了这些类型: data Km = Km Float deriving (Show, Eq) data Mile = Mile Float deriving (Show, Eq
我有一个关于 value in context 的小问题。 取 Just 'a',所以在这种情况下 Maybe 类型上下文中的值是 'a' 采用[3],因此在这种情况下,[a] 类型上下文中的值为3
require(quantmod) require(PerformanceAnalytics) getSymbols('INTC') x<- monthlyReturn(INTC) rollapply
我正在使用 VBA 对“已应用字轨更改”文档进行更改。 红色段落结束标记是插入段落结束标记。(打开“跟踪更改”> 将光标放在第一段末尾 > 按 Enter > 插入新段落内容 > 格式风格不同) 我需
考虑以下代码: class A{ my_method(const B& b){ import_something_from_c(this, b.getC()); // does some
我正在为自定义 Material 分配图像。分配的图像看起来有点像素化,类似于此图像 我已经将抗锯齿设置为 4 倍。我该如何解决这个问题? 最佳答案 尝试将 Material 的 mipFilter
我将样式应用于 元素和 元素。是否可以在 上使用样式元素应用于 似乎不遵循 CSS 特异性的通常规则。这是真的吗? 示例:http://jsfiddle.net/59dpy/ 尝试将所有背景色设为红
有没有办法将垂直虚线边框应用于 没有他们(边界)合并?我说的是附图上的东西——有 3 个 这里的元素,每个元素包含 2 的。如果我申请 border-right: 1px dashed black到
当我在 CSS 中对主体应用线性渐变时,如下所示 body { background: linear-gradient(#10416b, black); } 它不会将它应用到整个网页,而是将它应用到页
当我将边框和边框半径应用于 td 时,内半径是一个直 Angular ,根本不是圆的。 最佳答案 问题很可能是背景不透明的子元素会剪掉边框的内半径。 要解决此问题,您可以在 td 上应用 overfl
基本上,我有一个小的 SVG,它使用一个组来定义一个可重用的符号。该组包括我想在 CSS 中设置动画的路径。我面临的问题是只有“原始”元素应用了 CSS,“使用过”的元素没有。 .player_arr
宽度属性在这里不起作用: td { height: 50px; width: 25px; border: 1px
我想要一个函数(例如)在两种情况下输出 Map 的所有值: Map map1 = new HashMap(); Map map2 = new HashMap(); output(map1, "1234
我被要求将我们应用中的警报对话框的外观与应用主题使用的外观相匹配。 我设法将样式应用于应用程序中的所有警报对话框,并将其用作应用程序主题的一部分,但有些情况下样式应用不正确。 例如,当警报对话框包含“
我有一个 CGPath(由 UIBezierPath 创建),我想通过应用 CGAffineTransformScale 将其缩放到我想要的任何大小。 这会影响我的绘图质量(在转换为图像时)吗?如果不
您好,我已经在 vector 上使用了一些 STL 算法,例如 find_if、count_if、sort、push_back 等。现在我想为所有容器对象( vector 、列表、映射、集合)制作一个
我是一名优秀的程序员,十分优秀!