如何修复“dimnames中的错误(x)

问题描述 投票:2回答:1

我是插入符号包的新手(一般是用r和插入符号进行机器学习)。我使用来自西雅图的公开数据集,我想从中预测未来传入请求的类别(按分类)。

首先,我在数据集上进行80/20分割。数据中有一些NA,我想通过使用插入符号的knnImpute功能来估算汤姆。经过一段时间的运行后,我收到以下错误消息:

Error in dimnames(x) <- dn : 
  length of 'dimnames' [2] not equal to array extent

我做错了什么,我该如何解决这个问题?

此错误有更多帖子。不幸的是我找不到合适的解决方案来帮助解决我的问题......

我的数据集(v1.0)如下所示:

> dataset %>% str()
Classes ‘spec_tbl_df’, ‘tbl_df’, ‘tbl’ and 'data.frame':    170657 obs. of  9 variables:
 $ request_type   : Factor w/ 29 levels "Abandoned_Vehicle",..: 10 10 10 10 10 10 10 10 10 10 ...
 $ city_department: Factor w/ 8 levels "Center","City_Light",..: 3 3 3 3 3 3 3 3 3 3 ...
 $ neighborhood   : Factor w/ 91 levels "Adams","Alki",..: 1 1 4 4 10 13 21 21 21 24 ...
 $ weekday        : Ord.factor w/ 7 levels "So"<"Mo"<"Di"<..: 5 2 2 5 1 3 6 4 4 2 ...
 $ month          : Ord.factor w/ 12 levels "Jän"<"Feb"<"Mär"<..: 4 6 1 3 4 3 2 4 7 5 ...
 $ cal_week       : num  15 23 2 10 17 10 6 16 29 21 ...
 $ holiday        : Factor w/ 2 levels "noholiday","holiday": 1 1 1 1 1 1 1 1 1 1 ...
 $ businessday    : Factor w/ 2 levels "businessday",..: 1 1 1 1 2 1 1 1 1 1 ...
 $ goodfriday     : Factor w/ 2 levels "nogoodfriday",..: 1 1 1 1 1 1 1 1 1 1 ...

> dataset %>% skim()
Skim summary statistics
 n obs: 170657 
 n variables: 9 

── Variable type:factor ───────────────────────────────────────────────────────────────────────────────────────
        variable missing complete      n n_unique                                     top_counts ordered
     businessday       0   170657 170657        2                 bus: 136087, nob: 34570, NA: 0   FALSE
 city_department       0   170657 170657        8 Pol: 54916, Pub: 38171, Dep: 34712, Fin: 25471   FALSE
      goodfriday       0   170657 170657        2                   nog: 170140, goo: 517, NA: 0   FALSE
         holiday       0   170657 170657        2                  noh: 167514, hol: 3143, NA: 0   FALSE
           month       0   170657 170657       12 Aug: 15247, Okt: 14807, Sep: 14785, Mär: 14781    TRUE
    neighborhood    6447   164210 170657       91      NA: 6447, Bro: 4975, Uni: 3941, Wal: 3919   FALSE
    request_type       0   170657 170657       29 Aba: 34478, Cus: 22275, Ill: 22033, Par: 16521   FALSE
         weekday       0   170657 170657        7     Di: 28972, Mi: 28734, Mo: 28721, Do: 27298    TRUE

── Variable type:numeric ──────────────────────────────────────────────────────────────────────────────────────
 variable missing complete      n  mean    sd p0 p25 p50 p75 p100     hist
 cal_week       0   170657 170657 26.52 14.78  1  14  27  39   53 ▇▇▇▇▇▇▆▆

我的拆分代码:


set.seed(100)

split <- createDataPartition(dataset$request_type, p=0.8, list=FALSE)

train <- dataset[split,]
train_x = train[, 2:8]
train_y = train$request_type

test <- dataset[-split,]
test_x = test[, 2:8]
test_y = test$request_type

我的归责代码:

model.preprocessed.imputed <- preProcess(train, method='knnImpute')
model.preprocessed.imputed

train <- predict(model.preprocessed.imputed, newdata = train)

Wenn运行预测,我收到错误信息

Error in dimnames(x) <- dn : 
  length of 'dimnames' [2] not equal to array extent

从traceback我得到以下信息:

Error in dimnames(x) <- dn : length of 'dimnames' [2] not equal to array extent
3. `colnames<-`(`*tmp*`, value = miss_names)
2. predict.preProcess(PreProcess.MissingDatamodel, newdata = train)
1. predict(PreProcess.MissingDatamodel, newdata = train)

2019年4月2日更新

我的数据集(v1.0)的第一个版本向我展示了一个混合类:

> dataset %>% str()
Classes ‘spec_tbl_df’, ‘tbl_df’, ‘tbl’ and 'data.frame':    170657 obs. of  9 variables:

由于我发现一些帖子表明插入符号可能对反复出现异常,我试图将我的数据集转换为公共数据帧(v1.1):

dataset <- as.data.frame(dataset)
dataset %>% str()
'data.frame':   170657 obs. of  9 variables:
 $ request_type   : Factor w/ 29 levels "Abandoned.Vehicle",..: 10 10 10 10 10 10 10 10 10 10 ...
 $ city_department: Factor w/ 8 levels "Center","City.Light",..: 3 3 3 3 3 3 3 3 3 3 ...
 $ neighborhood   : Factor w/ 91 levels "Adams","Alki",..: 1 1 4 4 10 13 21 21 21 24 ...
 $ weekday        : Ord.factor w/ 7 levels "So"<"Mo"<"Di"<..: 5 2 2 5 1 3 6 4 4 2 ...
 $ month          : Ord.factor w/ 12 levels "Jän"<"Feb"<"Mär"<..: 4 6 1 3 4 3 2 4 7 5 ...
 $ cal_week       : num  15 23 2 10 17 10 6 16 29 21 ...
 $ holiday        : Factor w/ 2 levels "noholiday","holiday": 1 1 1 1 1 1 1 1 1 1 ...
 $ businessday    : Factor w/ 2 levels "businessday",..: 1 1 1 1 2 1 1 1 1 1 ...
 $ goodfriday     : Factor w/ 2 levels "nogoodfriday",..: 1 1 1 1 1 1 1 1 1 1 ...

dataset %>% skim()
Skim summary statistics
 n obs: 170657 
 n variables: 9 

── Variable type:factor ─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
        variable missing complete      n n_unique                                     top_counts ordered
     businessday       0   170657 170657        2                 bus: 136087, nob: 34570, NA: 0   FALSE
 city_department       0   170657 170657        8 Pol: 54916, Pub: 38171, Dep: 34712, Fin: 25471   FALSE
      goodfriday       0   170657 170657        2                   nog: 170140, goo: 517, NA: 0   FALSE
         holiday       0   170657 170657        2                  noh: 167514, hol: 3143, NA: 0   FALSE
           month       0   170657 170657       12 Aug: 15247, Okt: 14807, Sep: 14785, Mär: 14781    TRUE
    neighborhood    6447   164210 170657       91      NA: 6447, Bro: 4975, Uni: 3941, Wal: 3919   FALSE
    request_type       0   170657 170657       29 Aba: 34478, Cus: 22275, Ill: 22033, Par: 16521   FALSE
         weekday       0   170657 170657        7     Di: 28972, Mi: 28734, Mo: 28721, Do: 27298    TRUE

── Variable type:numeric ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
 variable missing complete      n  mean    sd p0 p25 p50 p75 p100     hist
 cal_week       0   170657 170657 26.52 14.78  1  14  27  39   53 ▇▇▇▇▇▇▆▆

虽然现在只是类data.frame,但它并没有解决我的问题。

r r-caret
1个回答
1
投票

我想我找到了问题的根源:

我最初使用tidyverse的readr :: read_csv(),它以某种方式给了我一个奇怪行为的数据对象(因为missuse也在评论中说明 - 感谢您的输入):

dataset <- read_csv("data/DataSet.csv") %>% clean_names()

使用read.csv()之后,我的数据集中没有NA了,并且所有的插入函数都突然与我的数据一起使用:

dataset <- read.csv("data/DataSet.csv", stringsAsFactors = FALSE) %>% clean_names()

也许这个发现对其他人也有帮助,因为我浪费了大量时间来查找由错误的数据集对象导致的错误消息。

UPDATE

现在我知道为什么没有NA的东西了。我发现read.csv()读取NA但是使它们成为空字符串(“”),而read_csv()显式地使它们成为NA。我只是简单地将NA转换为一个因素(“缺失”),因此我不必删除数据并且有丢失信息的风险。

© www.soinside.com 2019 - 2024. All rights reserved.