• using R version 2.15.0 (2012-03-30)
  • using platform: x86_64-pc-mingw32 (64-bit)
  • using session charset: ISO8859-1
  • checking for file 'RSVGTipsDevice/DESCRIPTION' ... OK
  • this is package 'RSVGTipsDevice' version '1.0-4'
  • checking package namespace information ... OK
  • checking package dependencies ... OK
  • checking if this is a source package ... OK
  • checking if there is a namespace ... OK
  • checking whether package 'RSVGTipsDevice' can be installed ... OK
  • checking installed package size ... OK
  • checking package directory ... OK
  • checking for portable file names ... OK
  • checking DESCRIPTION meta-information ... OK
  • checking top-level files ... OK
  • checking index information ... OK
  • checking package subdirectories ... OK
  • checking R files for non-ASCII characters ... OK
  • checking R files for syntax errors ... OK
  • loading checks for arch 'i386'
    ** checking whether the package can be loaded ... OK
    ** checking whether the package can be loaded with stated dependencies ... OK
    ** checking whether the package can be unloaded cleanly ... OK
    ** checking whether the namespace can be loaded with stated dependencies ... OK
    ** checking whether the namespace can be unloaded cleanly ... OK
  • loading checks for arch 'x64'
    ** checking whether the package can be loaded ... OK
    ** checking whether the package can be loaded with stated dependencies ... OK
    ** checking whether the package can be unloaded cleanly ... OK
    ** checking whether the namespace can be loaded with stated dependencies ... OK
    ** checking whether the namespace can be unloaded cleanly ... OK
  • checking for unstated dependencies in R code ... OK
  • checking S3 generic/method consistency ... OK
  • checking replacement functions ... OK
  • checking foreign function calls ... OK
  • checking R code for possible problems ... OK
  • checking Rd files ... OK
  • checking Rd metadata ... OK
  • checking Rd cross-references ... OK
  • checking for missing documentation entries ... OK
  • checking for code/documentation mismatches ... OK
  • checking Rd \usage sections ... OK
  • checking Rd contents ... OK
  • checking for unstated dependencies in examples ... OK
  • checking line endings in C/C++/Fortran sources/headers ... OK
  • checking line endings in Makefiles ... OK
  • checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK
  • checking compiled code ... OK
  • checking examples ...
    ** running examples for arch 'i386' ... OK
    ** running examples for arch 'x64' ... ERROR
    Running examples in 'RSVGTipsDevice-Ex.R' failed
    The error most likely occurred in:

    > ### Name: RSVGTipsDevice
    > ### Title: A SVG Graphics Driver with dynamic tips
    > ### Aliases: RSVGTipsDevice
    > ### Keywords: device package
    >
    > ### ** Examples
    >
    > library("RSVGTipsDevice")
    > sessionInfo()
    R version 2.15.0 (2012-03-30)
    Platform: x86_64-pc-mingw32/x64 (64-bit)

    locale:
    [1] LC_COLLATE=C LC_CTYPE=German_Germany.1252
    [3] LC_MONETARY=C LC_NUMERIC=C
    [5] LC_TIME=C

    attached base packages:
    [1] stats graphics grDevices utils datasets methods base

    other attached packages:
    [1] RSVGTipsDevice_1.0-4
    > devSVGTips("svgplot1.svg", toolTipMode=1,
    + title="SVG example plot 1: shapes and points, tooltips are title + 1 line")
    > plot(c(0,10),c(0,10), type="n", xlab="x", ylab="y",
    + main="Example SVG plot with title + 1 line tips (mode=1)")
    > setSVGShapeToolTip(title="A rectangle", desc="that is yellow")
    > rect(1,1,4,6, col='yellow')
    > setSVGShapeToolTip(title="1st circle with title only")
    > points(5.5,7.5,cex=20,pch=19,col='red')
    > setSVGShapeToolTip(title="A triangle", desc="big and green")
    > polygon(c(3,6,8), c(3,6,3), col='green')
    > # no tooltips on these points
    > points(2:8, 8:2, cex=3, pch=19, col='black')
    > # tooltips on each these points
    > invisible(sapply(1:7, function(x)
    + {setSVGShapeToolTip(title=paste("point", x))
    + points(x+1, 8-x, cex=3, pch=1, col='black')}))
    > setSVGShapeToolTip(title="Text", desc="can have a tool tip too!")
    > text(x=4, y=9, lab="Poke me!", col="blue")
    > dev.off()