gpt4 book ai didi

r - 在 R 中拟合样条函数以根据月值插值每日值

转载 作者:行者123 更新时间:2023-12-02 14:25:36 24 4
gpt4 key购买 nike

采用如下所示的数据框,其中包含 2005 年某些日期的数据以及每个日期的测量值。

df <- data.frame("date" = c('2005-04-04','2005-04-19', '2005-04-26', '2005-05-05', 
'2005-05-12', '2005-05-25', '2005-06-02', '2005-06-16', '2005-07-07', '2005-07-14',
'2005-07-21', '2005-08-04'), "numbers" = c(90,50,50,48,44,37,34,30,36,31,49,54))

我想基于此为一年中的每一天创建一个从 1:365 开始的值序列,本质上是创建一个从 01/01/2005 到 31/12/2005 的新数据框,其中已填充来自拟合这些现有 12 个值的样条函数的值。

当我尝试使用以下方法执行此操作时:

numbers <- df$numbers
x = spline(1:365, numbers)

我明白了

Error in xy.coords(x, y, setLab = FALSE) : 'x' and 'y' lengths differ'

我不确定出了什么问题。

最佳答案

消除错误很容易,但很难得到合理的答案。

x <- as.POSIXlt(as.character(df$date))$yday + 1  ## day of year (start from 1)
y <- df$number

有许多插值样条:“fmm”、“periodic”、“natural”、“monoH.FC”和“hyman”。但并非所有这些都适用于此。

y1 <- spline(x, y, xout = 1:365, method = "fmm")

y2 <- spline(x, y, xout = 1:365, method = "periodic")
#Warning message:
#In spline(x, y, xout = 1:365, method = "periodic") :
# spline: first and last y values differ - using y[1] for both

y3 <- spline(x, y, xout = 1:365, method = "natural")

y4 <- spline(x, y, xout = 1:365, method = "monoH.FC")
#Error in spline(x, y, xout = 1:365, method = "monoH.FC") :
# invalid interpolation method

y5 <- spline(x, y, xout = 1:365, method = "hyman")
#Error in spline(x, y, xout = 1:365, method = "hyman") :
# 'y' must be increasing or decreasing

有关这些方法的详细信息以及它们的必要假设/要求,请参阅?spline

所以显然只有 y1y3 没有问题地获得了。让我们画出它们的草图。

par(mfrow = c(1, 2))
plot(y1, type = "l", main = "fmm"); points(x, y, pch = 19)
plot(y3, type = "l", main = "natural"); points(x, y, pch = 19)

spline interpolation / extrapolation

正如我们所见,我们在推断数据时遇到大问题

关于r - 在 R 中拟合样条函数以根据月值插值每日值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51424183/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com