Last updated on 2018-06-17 19:49:44 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 1.2 | 1.46 | 26.35 | 27.81 | ERROR | |
r-devel-linux-x86_64-debian-gcc | 1.2 | 1.22 | 20.88 | 22.10 | ERROR | |
r-devel-linux-x86_64-fedora-clang | 1.2 | 41.22 | NOTE | |||
r-devel-linux-x86_64-fedora-gcc | 1.2 | 40.04 | NOTE | |||
r-devel-windows-ix86+x86_64 | 1.2 | 5.00 | 60.00 | 65.00 | NOTE | |
r-patched-linux-x86_64 | 1.2 | 1.43 | 24.69 | 26.12 | ERROR | |
r-patched-solaris-x86 | 1.2 | 75.00 | NOTE | |||
r-release-linux-x86_64 | 1.2 | 1.54 | 24.48 | 26.02 | ERROR | |
r-release-windows-ix86+x86_64 | 1.2 | 5.00 | 44.00 | 49.00 | NOTE | |
r-release-osx-x86_64 | 1.2 | NOTE | ||||
r-oldrel-windows-ix86+x86_64 | 1.2 | 3.00 | 52.00 | 55.00 | NOTE | |
r-oldrel-osx-x86_64 | 1.2 | NOTE |
Version: 1.2
Check: DESCRIPTION meta-information
Result: NOTE
Malformed Description field: should contain one or more complete sentences.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-ix86+x86_64, r-patched-linux-x86_64, r-patched-solaris-x86, r-release-linux-x86_64, r-release-windows-ix86+x86_64, r-release-osx-x86_64, r-oldrel-windows-ix86+x86_64, r-oldrel-osx-x86_64
Version: 1.2
Check: dependencies in R code
Result: NOTE
Package in Depends field not imported from: ‘splines’
These packages need to be imported from (in the NAMESPACE file)
for when this namespace is loaded but not attached.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-ix86+x86_64, r-patched-linux-x86_64, r-patched-solaris-x86, r-release-linux-x86_64, r-release-windows-ix86+x86_64, r-release-osx-x86_64, r-oldrel-windows-ix86+x86_64, r-oldrel-osx-x86_64
Version: 1.2
Check: S3 generic/method consistency
Result: NOTE
Found the following apparent S3 methods exported but not registered:
plot.threshpt print.summary.threshpt print.threshpt summary.threshpt
See section ‘Registering S3 methods’ in the ‘Writing R Extensions’
manual.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-patched-linux-x86_64, r-patched-solaris-x86, r-release-linux-x86_64
Version: 1.2
Check: R code for possible problems
Result: NOTE
plot.threshpt: no visible global function definition for ‘glm’
plot.threshpt: no visible global function definition for ‘predict’
plot.threshpt: no visible global function definition for ‘plot’
plot.threshpt: no visible global function definition for ‘lines’
plot.threshpt: no visible global function definition for ‘abline’
plot.threshpt: no visible global function definition for ‘points’
print.summary.threshpt: no visible global function definition for
‘printCoefmat’
threshpt: no visible global function definition for ‘as.formula’
threshpt: no visible global function definition for ‘glm’
threshpt: no visible global function definition for ‘vcov’
threshpt: no visible global function definition for ‘pnorm’
threshpt: no visible global function definition for ‘predict’
Undefined global functions or variables:
abline as.formula glm lines plot pnorm points predict printCoefmat
vcov
Consider adding
importFrom("graphics", "abline", "lines", "plot", "points")
importFrom("stats", "as.formula", "glm", "pnorm", "predict",
"printCoefmat", "vcov")
to your NAMESPACE file.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-ix86+x86_64, r-patched-linux-x86_64, r-patched-solaris-x86, r-release-linux-x86_64, r-release-windows-ix86+x86_64, r-release-osx-x86_64, r-oldrel-windows-ix86+x86_64, r-oldrel-osx-x86_64
Version: 1.2
Check: examples
Result: ERROR
Running examples in ‘HEAT-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: plot.threshpt
> ### Title: Plots from a threshpt Object
> ### Aliases: plot.threshpt
>
> ### ** Examples
>
> # read the Seoul data set and create lag variables
> data(mort)
> seoul = read6city(mort, 11)
> seoul_lag = lagdata(seoul, c("meantemp", "mintemp", "meanpm10", "meanhumi"), 5)
>
> # find a optimal threshold and conduct piecewise linear regression
> mythresh = threshpt(nonacc ~ meantemp_m3 + meanpm10_m2 + meanhumi + ns(sn, 4*10) + factor(dow),
+ expvar = "meantemp_m3", family = "poisson", data = seoul_lag,
+ startrng = 23, endrng = 33, searchunit = 0.2)
>
> # obtain plots
> plot(mythresh, select = 1, se = TRUE, expdf=8, col.value = "blue", col.ci = "light blue")
Error in xy.coords(x, y, xlabel, ylabel, log) :
'x' is a list, but does not have components 'x' and 'y'
Calls: plot -> plot.default -> xy.coords
Execution halted
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-patched-linux-x86_64, r-release-linux-x86_64