Learn R Programming

RandomFields (version 3.0.10)

Low level functions: Low level functions

Description

These functions are internal and should not be used.

Usage

rfGenerateModels(assigning,
 RFpath = "~/R/RF/svn/randomfields_2",
 RMmodels.file = paste(RFpath, "R/RMmodels.R", sep="/")
 )
 
checkExamples(exclude = NULL, include=1:length(.fct.list),
               ask=FALSE, echo=TRUE, halt=FALSE, ignore.all = FALSE,
               path="randomfields_2", package = "RandomFields",
                          read.rd.files=TRUE)

plotWithCircles(data, factor=1.0, xlim=range(data[,1])+c(-maxr,maxr), ylim=range(data[,2])+c(-maxr,maxr), col=1, fill=0, ...)

Arguments

assigning, RFpath, RMmodels.file
internal
exclude, include, ask, echo, halt, ignore.all, path, package, read.rd.files
internal; ignore.all referes to the all export statement in the namespace -- whether this should be ignored. if read.rf.files is TRUE or a path to the Rd files, then the man pages are analysed to
data, factor, xlim, ylim, col, fill, ...
internal

Examples

Run this code
RFoptions(seed=0)
\dontrun{
## check own examples
checkExamples(ignore.all=TRUE, halt=!TRUE)


### Check the examples of the other packages:
dep.packages <- c( #"DSpat","lgcp", "constrainedKriging", "MarkedPointProcess",
                  "Geneland", "glmmBUGS", 
                  "ProbForecastGOP","geoR",
                  "CompRandFld", ## RFsim does not work in version 2.1.18
                  "fractaldim", "rpanel", "spatstat")
#for (i in dep.packages) library(i, character.only=TRUE)
#for (i in dep.packages) install.packages(i)


not.working <- list()
for (.i in 1:length(dep.packages)) {
  not.working[[.i]] <-
    checkExamples(path=paste("~/TMP/dep.packages", dep.packages[.i], sep="/"),
                   package=dep.packages[.i])
  Print(.i, not.working); repeat{ if (readline()=="e") break}
}

Print(not.working)
}

# for (i in dep.packages) cat(maintainer(i), "\n") 
RFoptions(seed=NA)

Run the code above in your browser using DataLab