The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
The aim of the LMMsolver
package is to provide an
efficient and flexible system to estimate variance components using
restricted maximum likelihood or REML (Patterson and Thompson 1971), for
models where the mixed model equations are sparse. An important feature
of the package is smoothing with P-splines (Eilers and Marx 1996). The
sparse mixed model P-splines formulation (Boer 2023) is used, which
makes the computations fast.
install.packages("LMMsolver")
::install_github("Biometris/LMMsolver", ref = "develop", dependencies = TRUE) remotes
As an example of the functionality of the package we use the
USprecip
data set in the spam
package (Furrer
and Sain 2010).
library(LMMsolver)
library(ggplot2)
## Get precipitation data from spam
data(USprecip, package = "spam")
## Only use observed data.
<- as.data.frame(USprecip)
USprecip <- USprecip[USprecip$infill == 1, ]
USprecip head(USprecip[, c(1, 2, 4)], 3)
#> lon lat anomaly
#> 6 -85.95 32.95 -0.84035
#> 7 -85.87 32.98 -0.65922
#> 9 -88.28 33.23 -0.28018
A two-dimensional P-spline can be defined with the
spl2D()
function, with longitude and latitude as
covariates, and anomaly (standardized monthly total precipitation) as
response variable:
<- LMMsolve(fixed = anomaly ~ 1,
obj1 spline = ~spl2D(x1 = lon, x2 = lat, nseg = c(41, 41)),
data = USprecip)
The spatial trend for the precipitation can now be plotted on the map
of the USA, using the predict
function of
LMMsolver
:
<- range(USprecip$lon)
lon_range <- range(USprecip$lat)
lat_range <- expand.grid(lon = seq(lon_range[1], lon_range[2], length = 200),
newdat lat = seq(lat_range[1], lat_range[2], length = 300))
<- predict(obj1, newdata = newdat)
plotDat
<- sf::st_as_sf(plotDat, coords = c("lon", "lat"))
plotDat <- sf::st_as_sf(maps::map("usa", regions = "main", plot = FALSE))
usa ::st_crs(usa) <- sf::st_crs(plotDat)
sf<- sf::st_intersects(plotDat, usa)
intersection <- plotDat[!is.na(as.numeric(intersection)), ]
plotDat
ggplot(usa) +
geom_sf(color = NA) +
geom_tile(data = plotDat,
mapping = aes(geometry = geometry, fill = ypred),
linewidth = 0,
stat = "sf_coordinates") +
scale_fill_gradientn(colors = topo.colors(100))+
labs(title = "Precipitation (anomaly)",
x = "Longitude", y = "Latitude") +
coord_sf() +
theme(panel.grid = element_blank())
Further examples can be found in the vignette.
vignette("Solving_Linear_Mixed_Models")
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.