4

为什么在 R 中指定自定义线型时会出现 R 崩溃段错误?下面的四种线型实际上是相同的,因为它们以相同的顺序循环通过相同大小的破折号和空格(它们只是从循环中的不同点开始)。

plot.new()
abline(0.1,0,lty='28282383') # works
abline(0.2,0,lty='83282823') # works
abline(0.3,0,lty='28238328') # segfault
abline(0.4,0,lty='23832828') # segfault

这是上面两条致命线中第一条的完整错误消息:

 *** caught segfault ***
address 0xbf981000, cause 'memory not mapped'
Segmentation fault
4

2 回答 2

3

看起来像 Cairo 图形设备中的一个错误 - 我在使用默认X11()图形设备时崩溃了,但在使用X11(type="Xlib")or时却没有pdf()。RStudio 可能有效,因为它可能使用自己的方法来捕获图形。

我在 2.15.1-patched 的描述中没有看到任何关于此的内容:

http://cran.r-project.org/bin/windows/base/NEWS.R-2.15.1patched.html

所以我尝试了,现在已将其报告为错误:

https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=15055

于 2012-09-22T07:38:37.877 回答
0

似乎可以通过 Mac 上的 RStudio 为我工作。什么操作系统?什么版本的R?

> plot.new()
> abline(0.1,0,lty='28282383') # works
> abline(0.2,0,lty='83282823') # works
> abline(0.3,0,lty='28238328') # segfault
> abline(0.4,0,lty='23832828') # segfault
> sessionInfo()
R version 2.15.0 (2012-03-30)
Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit)

locale:
[1] C/en_US.UTF-8/C/C/C/C

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

other attached packages:
[1] reshape2_1.2.1

loaded via a namespace (and not attached):
[1] plyr_1.7.1    stringr_0.6.1 tools_2.15.0 

在此处输入图像描述

于 2012-09-22T00:18:44.443 回答