similar to: Segmentation fault with fix() (PR#6605)

Displaying 20 results from an estimated 200 matches similar to: "Segmentation fault with fix() (PR#6605)"

2005 Mar 01
2
Negative intercept in glm poisson model
Dear list, I'm trying to fit a glm model using family=poisson(link = "identity"). The problem is that the glm function fits a model with a negative intercept, which sounds like a nonsense to me, being the response a Poisson variable. >From a previous discussion on this list I've understood that the glm function uses IRLS for the fitting without any constraint so it is
2004 Oct 15
8
Testing for normality of residuals in a regression model
Hi all, Is it possible to have a test value for assessing the normality of residuals from a linear regression model, instead of simply relying on qqplots? I've tried to use fitdistr to try and fit the residuals with a normal distribution, but fitdsitr only returns the parameters of the distribution and the standard errors, not the p-value. Am I missing something? Cheers, Federico
2005 Jul 15
1
Padding in lattice plots
Hi all, I've used the split argument to print four lattice plots on a single page. The problem now is that I need to reduce the amount of white space between the plots. I've read other mails in this list about the new trellis parameters layout.heights and layout.widhts but I haven't been able to use them properly. I've tried to input values between 0 and 1 as the padding value
2004 Jul 28
3
Another big data size problem
Hi all, I'm trying to read a 1220 * 20000 table in R but I'm having lot of problems. Basically what it happens is that R.bin starts eating all my memory until it gets about 90%. At that point it locks itself in a uninterruptible sleep status (at least that's what top says) where it just sits there barely using the cpu at all but keeping its tons of memory. I've tried with
2006 Jun 12
2
Problem: Warcraft 3 and OpenGL
Hi, I've got a problem considering wine, and no one seem to be able to help me at my distro-forum, so I'm trying this. This is my problem: I having some difficulties running Warcraft 3. I have several games running flawless in wine (Diablo 2, Starcraft, Fallout and others), but running warcraft 3 is too slow. I have seen in other threads on this forum that one needs opengl to run it
2003 Sep 09
1
Samba3: group mapping with samba PDC, LDAP account flags
Hello again, this mainly affects documentation: a) net groupmap is a fine thing. Though: is it optional or do I have to map some groups for proper client operation ( W2k/XP pro) ? If so, which Windows groups have to be mapped? b) There are "Account flags" both visible in the LDAP directory as well as in pdbedit's output. The examples always refer to UX, while smbpasswd just sets
2004 Oct 26
3
Combining columns of different length
Hi, you can use this simple function: add.col<-function(df, new.col) {n.row<-dim(df)[1] length(new.col)<-n.row cbind(df, new.col) } see this example: > x<-cbind(c(1,2,3),c(4,5,6)) > x [,1] [,2] [1,] 1 4 [2,] 2 5 [3,] 3 6 > y<-c(7,8) > y [1] 7 8 > add.col<-function(df, new.col)
2007 Apr 11
3
incomplete window contents when unminimizing
Hi, Using Xgl, when a window is unminimized, sometimes (especially with Firefox), the window contents are not immediately visible (partially or completely) until an unminimize animation is completed. That is, sometimes there are empty (transparent) rectangles within the window (maybe corresponding to some Mozilla controls), and sometimes the whole window is empty (only the decoration is visible).
2006 Oct 04
2
Crash in cb_search.c, line 414
Jean-Marc Valin wrote: > That's quite strange. The only thing I can say is that the bug is most > likely *not* around line 414. It's probably some sort of memory > corruption somewhere else (quite possibly outside of Speex). Do you have > any more information? What CPU? What's the value of best_ntarget[j]? Is > SSE enabled? What's the allocation method
2004 Oct 15
0
Re: Testing for normality of residuals in a regression model
Dear Federico, see: ? shapiro.test(stats) Shapiro-Wilk Normality Test and ? jarque.bera.test(tseries) Jarque-Bera Test They are the most common tests used for normality testing. Ciao Vito Federico Gherardini wrote on Fri Oct 15 14:44:18 CEST 2004: Hi all, Is it possible to have a test value for assessing the normality of residuals from a linear regression model,
2003 Apr 10
1
regchrome causes segfault during Mozilla build
>Submitter-Id: current-users >Originator: Dr. Otacon >Organization: Skimask Ninjas >Confidential: no >Synopsis: regchrome causes segfault during Mozilla build >Severity: critical >Priority: high >Category: ports >Class: sw-bug >Release: FreeBSD 4.8-STABLE i386 >Environment: System: FreeBSD octo.sytes.net 4.8-STABLE FreeBSD 4.8-STABLE #4: Wed Apr 9 14:48:08 MDT
2011 Feb 15
3
[LLVMdev] Possible LLVM or DragonEgg bug
I'm getting the following error when compiling OpenCV 2.0 with OpenMP and SSE intrinsics enabled with GCC+DragonEgg(newest SVN version): /usr/lib64/ccache/c++ -Wall -Wno-long-long -pthread -ffunction-sections -D_GLIBCXX_PARALLEL -fopenmp -D__STDC_CONSTANT_MACROS -fplugin=/home/John/Documents/Project/DragonEgg/dragonegg/dragonegg.so -O3 -DNDEBUG -fomit-frame-pointer -O3 -ffast-math -mmmx
2004 Aug 06
2
Asterisk not starting
Hello! Asterisk "CVS-HEAD-08/06/04-14:55:13" won't start on two of three different Gentoo machines. This is the output of gdb: ultra asterisk # gdb /usr/sbin/asterisk GNU gdb 6.0 Copyright 2003 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions.
2015 Apr 09
2
[LLVMdev] MMX/SSE subtarget feature in IR
Hi all, I have a sample test case : $ cat 1.c int foo(int x, int y){ int z = x + y; return z/2; } I tried to get its IR form with clang providing subtarget feature as mmx for target x86_64 $ clang -O3 -mmmx 1.c -S -emit-llvm in the IR generated i can see the subtarget-features as function attribute : "target-features"="+mmx" In the SelectionDAG phase in file
2011 Feb 16
0
[LLVMdev] Possible LLVM or DragonEgg bug
This is hopefully fixed in the latest version of dragonegg. Thanks for reporting it! Ciao, Duncan. On 15/02/11 20:54, sabaliauskas g. (gs5g08) wrote: > I'm getting the following error when compiling OpenCV 2.0 with OpenMP and SSE intrinsics enabled with GCC+DragonEgg(newest SVN version): > > /usr/lib64/ccache/c++ -Wall -Wno-long-long -pthread -ffunction-sections
2015 Apr 09
2
[LLVMdev] MMX/SSE subtarget feature in IR
Thanks Kevin for the reply. I got the point now :) On 10 Apr 2015 00:18, "Smith, Kevin B" <kevin.b.smith at intel.com> wrote: > For x86_64 ABI, a minimum feature set of SSE2 is required. > > > > Kevin > > > > *From:* llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] *On > Behalf Of *suyog sarda > *Sent:* Thursday, April 09,
2004 Nov 25
1
Error using glm with poisson family and identity link
Hi all I'm trying to use the function glm from the MASS package to do the following fit. fit <- glm(FP ~ rand, data = tab, family = poisson(link = "identity"), subset = rand >= 1) (FP is >= 0) but I get the following error Error: no valid set of coefficients has been found:please supply starting values In addition: Warning message: NaNs produced in: log(x) in contrast
2009 Sep 03
1
trouble installing gtools package in local directory
Hello, I've recently transitioned to using R in Linux. My OS/installation versions are: $ Red Hat Enterprise Linux AS release 4 (Nahant Update 6) $ Linux lx-chgmqsd05 2.6.9-67.0.1.ELsmp #1 SMP Fri Nov 30 11:57:43 EST 2007 x86_64 x86_64 x86_64 GNU/Linux I am trying to create a repository of packages under ~/R/library which I've created since I do not have admin access on my system. From my
2009 Sep 03
1
trouble installing gtools package in local directory
Hello, I've recently transitioned to using R in Linux. My OS/installation versions are: $ Red Hat Enterprise Linux AS release 4 (Nahant Update 6) $ Linux lx-chgmqsd05 2.6.9-67.0.1.ELsmp #1 SMP Fri Nov 30 11:57:43 EST 2007 x86_64 x86_64 x86_64 GNU/Linux I am trying to create a repository of packages under ~/R/library which I've created since I do not have admin access on my system. From my
2011 Feb 17
1
[LLVMdev] Possible LLVM or DragonEgg bug
I have downloaded and compiled the latest versions of LLVM and DragonEgg from SVN, but I still seem to get this same problem. I am using 64-bit Linux OS maybe the fix was only for 32-bit OS'es? ________________________________________ From: llvmdev-bounces at cs.uiuc.edu [llvmdev-bounces at cs.uiuc.edu] On Behalf Of Duncan Sands [baldrick at free.fr] Sent: Wednesday, February 16, 2011 5:14 PM