Displaying 3 results from an estimated 3 matches for "checkintformat".
2009 May 29
1
png() error in recent R-devel on Windows
...;test.png") : invalid value of 'fillOddEven'
The png() function is defined like this:
> png
function (filename = "Rplot%03d.png", width = 480, height = 480,
units = "px", pointsize = 12, bg = "white", res = NA, restoreConsole = TRUE)
{
if (!checkIntFormat(filename))
stop("invalid 'filename'")
filename <- path.expand(filename)
units <- match.arg(units, c("in", "px", "cm", "mm"))
if (units != "px" && is.na(res))
stop("'res' m...
2009 Mar 24
1
segfault when running heatmap()
...e))
new$pointsize <- pointsize if (!missing(bg)) new$bg <- bg
if (!missing(canvas)) new$canvas <- canvas if (!missing(xpos))
new$xpos <- xpos if (!missing(ypos)) new$ypos <- ypos if
(!missing(title)) new$title <- title if
(!checkIntFormat(new$title)) stop("invalid 'title'") if
(!missing(type)) new$type <- match.arg(type, c("Xlib", "cairo",
"nbcairo")) if (!missing(antialias)) { new$antialias <-
pmatch(antialias, c("default", "none"...
2009 Jan 19
1
patch for textspecial and defaultfont in xfig
...pointsize = 12, bg = "transparent", fg = "black",
- pagecentre = TRUE)
+ pagecentre = TRUE, defaultfont = FALSE, textspecial
= FALSE)
{
## do initialization if needed
initPSandPDFfonts()
@@ -281,7 +281,7 @@
if(!checkIntFormat(file)) stop("invalid 'file'")
.External(XFig, file, paper, family, bg, fg,
width, height, horizontal, pointsize,
- onefile, pagecentre, encoding)
+ onefile, pagecentre, defaultfont, textspecial, encoding)
invisible()
}
Index...