我正处于R编程的第一步。使用Sublime Text 3。我正在尝试使用以下代码绘制一些数据:
cars <- c(1, 3, 6, 4, 9)
windows()
plot(cars)
我希望在按住Ctrl + B之后看到图表,但刚才我注意到PDF文件已保存在图表中。
是否可以查看图表而不是保存文件?
尝试dev.off()
我得到了:
Error in dev.off() : cannot shut down device 1 (the null device)
Execution halted
尝试getOption("device")
我得到了:
function (file = if (onefile) "Rplots.pdf" else "Rplot%03d.pdf",
width, height, onefile, family, title, fonts, version, paper,
encoding, bg, fg, pointsize, pagecentre, colormodel, useDingbats,
useKerning, fillOddEven, compress)
{
initPSandPDFfonts()
new <- list()
if (!missing(width))
new$width <- width
if (!missing(height))
new$height <- height
if (!missing(onefile))
new$onefile <- onefile
if (!missing(title))
new$title <- title
if (!missing(fonts))
new$fonts <- fonts
if (!missing(version))
new$version <- version
if (!missing(paper))
new$paper <- paper
if (!missing(encoding))
new$encoding <- encoding
if (!missing(bg))
new$bg <- bg
if (!missing(fg))
new$fg <- fg
if (!missing(pointsize))
new$pointsize <- pointsize
if (!missing(pagecentre))
new$pagecentre <- pagecentre
if (!missing(colormodel))
new$colormodel <- colormodel
if (!missing(useDingbats))
new$useDingbats <- useDingbats
if (!missing(useKerning))
new$useKerning <- useKerning
if (!missing(fillOddEven))
new$fillOddEven <- fillOddEven
if (!missing(compress))
new$compress <- compress
old <- check.options(new, name.opt = ".PDF.Options", envir = .PSenv)
if (!missing(family) && (inherits(family, "Type1Font") ||
inherits(family, "CIDFont"))) {
enc <- family$encoding
if (inherits(family, "Type1Font") && !is.null(enc) &&
enc != "default" && (is.null(old$encoding) || old$encoding ==
"default"))
old$encoding <- enc
family <- family$metrics
}
if (is.null(old$encoding) || old$encoding == "default")
old$encoding <- guessEncoding()
if (!missing(family)) {
if (length(family) == 4L) {
family <- c(family, "Symbol.afm")
}
else if (length(family) == 5L) {
}
else if (length(family) == 1L) {
pf <- pdfFonts(family)[[1L]]
if (is.null(pf))
stop(gettextf("unknown family '%s'", family),
domain = NA)
matchFont(pf, old$encoding)
}
else stop("invalid 'family' argument")
old$family <- family
}
version <- old$version
versions <- c("1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7",
"2.0")
if (version %in% versions)
version <- as.integer(strsplit(version, "[.]")[[1L]])
else stop("invalid PDF version")
onefile <- old$onefile
if (!checkIntFormat(file))
stop(gettextf("invalid 'file' argument '%s'", file),
domain = NA)
.External(C_PDF, file, old$paper, old$family, old$encoding,
old$bg, old$fg, old$width, old$height, old$pointsize,
onefile, old$pagecentre, old$title, old$fonts, version[1L],
version[2L], old$colormodel, old$useDingbats, old$useKerning,
old$fillOddEven, old$compress)
invisible()
}
<bytecode: 0x000000000f0e4c80>
<environment: namespace:grDevices>
答案 0 :(得分:0)
使用独立的R控制台或其他程序(如RStudio),默认行为是显示绘图而不是将其另存为pdf。尝试使用dev.off()
重置图形设备。
如果失败,如果你拨打getOption("device")
会怎么样?