Description Usage Format Source References Examples
a pseudo-panel of 86 areas from 2008
number of observations : 430
number of individual observations : 5
country : France
package : panel
Chapter : 10
1 |
A dataframe containing:
observation site
measuring period
evapotranspiration
precipitation
mean soil moisture deficit
potential evapotranspiration
infiltration rate
biomass
biomass in early growing season
biomass in main growth period
peak biomass
peak biomass after clipping
biomass in autumn
plant cover
soft-leaved forbs
tall grass
species diversity
mat-forming graminoids
dwarf shrubs
abundance of legumes
kindly provided by the authors
Obojes, N.; Bahn, M.; Tasser, E.; Walde, J.; Inauen, N.; Hiltbrunner, E.; Saccone, P.; Lochet, J.; Clément, J. and S. Lavorel (2015) “Vegetation Effects on the Water Balance of Mountain Grasslands Depend on Climatic Conditions”, Ecohydrology, 8(4), 552-569, doi: 10.1002/eco.1524 .
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | #### Example 10-14
## ------------------------------------------------------------------------
## Not run:
data("EvapoTransp", package = "pder")
data("etw", package = "pder")
if (requireNamespace("splm")){
library("splm")
evapo <- et ~ prec + meansmd + potet + infil + biomass + plantcover +
softforbs + tallgrass + diversity + matgram + dwarfshrubs + legumes
semsr.evapo <- spreml(evapo, data=EvapoTransp, w=etw,
lag=FALSE, errors="semsr")
summary(semsr.evapo)
}
## ------------------------------------------------------------------------
library("plm")
if (requireNamespace("lmtest")){
coeftest(plm(evapo, EvapoTransp, model="pooling"))
}
## ------------------------------------------------------------------------
if (requireNamespace("lmtest") & requireNamespace("splm")){
coeftest(spreml(evapo, EvapoTransp, w=etw, errors="sem"))
}
#### Example 10-17
## ------------------------------------------------------------------------
if (requireNamespace("lmtest")){
saremsrre.evapo <- spreml(evapo, data = EvapoTransp,
w = etw, lag = TRUE, errors = "semsr")
summary(saremsrre.evapo)$ARCoefTable
round(summary(saremsrre.evapo)$ErrCompTable, 6)
}
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.