https://github.com/cran/RandomFields
Raw File
Tip revision: fab3d29ef16569604858ee648b9e1f6f7d4a7c96 authored by Martin Schlather on 21 September 2014, 00:00:00 UTC
version 3.0.42
Tip revision: fab3d29
fitmaxstable.R
### here general function to fit maxstable processes

fit.maxstable.scale <- function(...) {
  stop("de Haan estimator not programmed yet") ## joined paper with estimating trend
  RFoptOld <- internal.rfoptions(...)
  on.exit(RFoptions(LIST=RFoptOld[[1]]))
  RFopt <- RFoptOld[[2]]

}


fit.extremal.gauss <- function(...) {
 stop("estimation of Schlather model not programmed yet") ## joined paper with estimating trend
  RFoptOld <- internal.rfoptions(...)
  on.exit(RFoptions(LIST=RFoptOld[[1]]))
  RFopt <- RFoptOld[[2]]


}


fit.smith <- function(...) {
  stop("estimation of Smith model not programmed yet") ## joined paper with estimating trend
  RFoptOld <- internal.rfoptions(...)
  on.exit(RFoptions(LIST=RFoptOld[[1]]))
  RFopt <- RFoptOld[[2]]

}

back to top