我使用pdf()
设备创建了几个pdf,我似乎无法从计算机中删除它们。我运行代码时收到以下错误。
> pdf(file="Appendix_B_1.pdf")
> plot(1:10)
> dev.off
function (which = dev.cur())
{
if (which == 1)
stop("cannot shut down device 1 (the null device)")
.External(C_devoff, as.integer(which))
dev.cur()
}
<bytecode: 0x0000000008c7ecd0>
<environment: namespace:grDevices>
以上是我试图诱骗计算机认为它是一个新文件。它改变了文件,我可以打开它。我只是无法删除它。
我不知道这意味着什么,我想要做的就是删除文件。是否有一些解决方法可以关闭设备或从硬盘驱动器中删除文件?
答案 0 :(得分:5)
dev.off
是函数的名称。键入函数名称时,将打印该函数的源代码。如果要运行该函数,请添加括号:dev.off()