R - 将外推(lm)值添加到观测矩阵

时间:2017-04-04 12:07:39

标签: r matrix lm extrapolation

我正在尝试将一组外推的“观察”添加到R中的矩阵。我知道如何使用常规编程技术(读取;一堆嵌套循环和函数)来做到这一点但我觉得这必须是可能的通过在R功能中使用构建,可以采用更加简洁的方式。

下面的代码说明了这一点以及它崩溃的地方

非常感谢您的帮助!

亲切的问候

西尔

library(dplyr)

# The idea is that i have a table of observations for e.g. x=5, 6, 7, 8, 9 and 10. The observations (in this example 2)
# conform fairly decently to sets of 2nd order polynomials.
# Now, I want to add an extrapolated value to this table (e.g. x=4). I know how to do this programmically 
# but I feel there must be a cleaner solution to do this. 

#generate dummy data table
x <- 5:10
myData <- tibble(x, a = x^2 * 2 + x * 3 + 4 + rnorm(1,0,0.01), b = x^2 * 3 + x * 4 + 5 + rnorm(1,0,0.01)   )

#Gather (put in Data-Key format)
myDataKeyFormat <- gather(myData,key = "someLabel", value = "myObservation", -x)
fitted_models <- myDataKeyFormat %>% group_by(someLabel) %>% do(model = lm(myObservation ~ poly(x,2), data = .))
myExtrapolatedDataPointx <- tibble(x = 4)

#Add the x=4 field
fitted_points <- fitted_models %>% group_by(someLabel) %>% do(predict(.$model,myExtrapolatedDataPointx)) #R really doesnt like this bit

#append the fitted_points to the myDataKeyFormat
myDataKeyFormatWithExtrapolation <- union(myDataKeyFormat,fitted_points)

#use spread to 
myDataWithExtrapolation <- myDataKeyFormatWithExtrapolation %>% spread(someLabel,myObservation)

1 个答案:

答案 0 :(得分:1)

这是tidyverse中的解决方案,并使用purrr创建不同的模型。想法是嵌套(使用tidyr::nest)然后purrr::map来训练模型。然后,我将添加新值并使用modelr::add_predictions计算预测。在这里,您可以使用变量someLabel获取相同位置的所有数据:训练数据,模型,测试数据和预测。我还给你一种可视化数据的方法。 你可以查看Hadley Wickham&amp ;;的R for Data Science。 Garrett Grolemund,特别是关于模型的部分以获取更多信息。

library(dplyr)
library(tibble)
library(tidyr)
library(purrr)
library(modelr)
library(ggplot2)

set.seed(1) # For reproducibility
x <- 5:10
myData <- tibble(x, 
                 a = x^2 * 2 + x * 3 + 4 + rnorm(1,0,0.01), 
                 b = x^2 * 3 + x * 4 + 5 + rnorm(1,0,0.01))

#Gather (put in Data-Key format)
myDataKeyFormat <- gather(myData,key = "someLabel", value = "myObservation", -x)

myModels <- myDataKeyFormat %>% 
  nest(-someLabel) %>% 
  mutate(model = map(data, ~lm(myObservation ~ poly(x,2), data = .x)))

此时的结果如下:someLabel的每个值都有一个模型。

# A tibble: 2 × 3
  someLabel             data    model
      <chr>           <list>   <list>
1         a <tibble [6 × 2]> <S3: lm>
2         b <tibble [6 × 2]> <S3: lm>

我将在新列中添加一些数据点(map是为数据帧的每一行创建一个数据点。)

# New data
new_data <- myModels %>% 
  mutate(new = map(data, ~tibble(x = c(3, 4, 11, 12))))

我添加了预测:add_predictions将数据框和模型作为参数,因此我使用map2映射新数据和模型。

fitted_models <- new_data %>% 
  mutate(new = map2(new, model, ~add_predictions(.x, .y)))
fitted_models
# A tibble: 2 × 4
  someLabel             data    model              new
      <chr>           <list>   <list>           <list>
1         a <tibble [6 × 2]> <S3: lm> <tibble [4 × 2]>
2         b <tibble [6 × 2]> <S3: lm> <tibble [4 × 2]>

你去了:每个标签都有关于这些数据的数据和模型,以及带有预测的新数据。 为了绘制它,我使用unnest将数据带回数据框,然后绑定行以将“旧”数据和新值一起使用。

my_points <- bind_rows(unnest(fitted_models, data),
          unnest(fitted_models, new))

ggplot(my_points)+
  geom_point(aes(x = x, y = myObservation), color = "black") +
  geom_point(aes(x = x, y = pred), color = "red")+
  facet_wrap(~someLabel)

Models