similar to: R-beta: Segmentation fault

Displaying 20 results from an estimated 1300 matches similar to: "R-beta: Segmentation fault"

2000 Jan 19
1
Missing smb.conf
I hope that someone can help me with this: I hav always used Samba by installing the binaries. That has worked well. But now I need the SSL-option - so I have to install it from the bottom. I use redhad 6.0 - and samba 2.0.6. First I removed the rpm of the existing installation(and deleted the smb.conf in /etc). Then I gunziped/untared the file in tmp. In the source directory I did the
1999 Oct 12
3
Accessing a smb server at USER level
Hello! I have been using Samba for 2,5 years now. I have had the same problem since I started - I can not connect the Samba server from a W98 pc when the server security level is set to USER. So I have dropped security and use SHARE instead. I can see the share from the Window-client, but when I try to double click i get an error message saying: "Write networkpassword: , Resourse:
2009 May 22
2
sciplot question
Hi, I would like to have lineplot.CI and barplot.CI to actually plot confidence intervals , instead of standard error. I understand I have to use the ci.fun option, but I'm not quite sure how. Like this : > qt(0.975,df=n-1)*s/sqrt(n) but how can I apply it to visualize the length of the student's T confidence intervals rather than the stdandard error of the plotted means
2001 Sep 21
1
In Addidtion to the Sound problem ... !! read this !!
try using wine with these commands : wine voice_tweak.exe -debugmsg +wave,+dsound,+dinput,+midi,+wineoss,+msacm,+midimap,+mmsystem this gives me : !! ----------------- trace:wave:OSS_WaveInit OSS dsp out mask=00000018 trace:wave:OSS_WaveInit OSS dsp out caps=00003300 trace:wave:OSS_WaveInit out dwFormats = 00000FFF, dwSupport = 0000006C trace:wave:OSS_WaveInit OSS dsp in caps=00003300
2006 Aug 08
0
(Fwd) Re: paired t-test. Need to rearrange data?
------- Forwarded message follows ------- From: Petr Pikal <petr.pikal at precheza.cz> To: Henrik Parn <henrik.parn at bio.ntnu.no> Subject: Re: [R] paired t-test. Need to rearrange data? Date sent: Tue, 08 Aug 2006 16:13:47 +0200 Hi Uff, it takes me a bit headache but this shall do it ?unstack ?table ?t new.list<-unstack(test.data,y~id)
2010 Jan 30
3
Competiciín de classificación!!! Fwd: [R] Classification of supernovae - a challenge
Hola! Este mail llegó a r-help hoy, yo lo mandó también a esta lista. Es interesante con competiciones de predicción/clasificación! ¿Alguien que quiere cooperar? Kjetil ---------- Forwarded message ---------- From: Kjetil Halvorsen <kjetilbrinchmannhalvorsen@gmail.com> Date: Fri, Jan 29, 2010 at 12:19 Subject: Fwd: [R] Classification of supernovae - a challenge To: Kjetil Halvorsen
2007 Mar 19
1
Unable to print - fixme:psdrv:PSDRV_EndPage Already ended a page?
Running Kubuntu linux with wine 0.9.22. Printing via cups seems to work fine from linux ("lpr tiger.ps" works fine). But when I try to print from coverxp through wine I get the following error (and nothing is printed): trace:winspool:OpenPrinterW (L"EPSONStylusC86", 0x33f690, (nil)) trace:winspool:GetPrinterDataExA (0x2, "PrinterDriverData", "Paper Size"
2008 Dec 01
1
linear functional relationships with heteroscedastic & non-Gaussian errors - any packages around?
Hi, I have a situation where I have a set of pairs of X & Y variables for each of which I have a (fairly) well-defined PDF. The PDF(x_i) 's and PDF(y_i)'s are unfortunately often rather non-Gaussian although most of the time not multi--modal. For these data (estimates of gas content in galaxies), I need to quantify a linear functional relationship and I am trying to do this as
2009 Aug 24
2
Number of CPU's
Any way to get access to the number of CPU's, optionally their type, from within R? In linux I can just read /proc/cpuinfo but for win/mac ? Thanks! H?vard -- H?vard Rue Department of Mathematical Sciences Norwegian University of Science and Technology N-7491 Trondheim, Norway Voice: +47-7359-3533 URL : http://www.math.ntnu.no/~hrue Fax : +47-7359-3524 Email: havard.rue
2011 Dec 05
2
bit error robustness
Hello everyone, I'm evaluating the Celt in terms of robustness against bit errors. So what I have done is encoding a wav file using the \tools\celtenc.exe and then manipulated the wav file according a desired bit error rate or burst error length. But the Celt decoder stops decoding with the first bit I manipulated even if this bit is not in the header. So is there a way to do the test
2009 Jan 21
0
patch for src/main/character.c
Attached is a suggested patch for src/main/character.c. It does not fix a bug, but rather provides an improvement on the recent extension of do_grep. In essence, instead of four occurences of 'invert ^ LOGICAL(ind)[i]' that accommodate for the option 'invert' added to grep, there is one occurence of 'LOGICAL(ind)[i] ^= invert' that modifies in-place the logical vector of
2008 Oct 26
4
odd behaviour of identical
given what ?identical says, i find the following odd: x = 1:10 y = 1:10 all.equal(x,y) [1] TRUE identical(x,y) [1] TRUE y[11] = 11 y = y[1:10] all.equal(x,y) [1] TRUE identical(x,y) [1] FALSE y [1] 1 2 3 4 5 6 7 8 9 10 length(y) [1] 10 looks like a bug. platform i686-pc-linux-gnu arch i686 os linux-gnu system
2003 Feb 05
3
R as a `script'
is there any way i can use R as a tool for scripts in unix, as wotan[hrue]$ cat example.R #!/usr/bin/R x=1 havard -- Havard Rue Department of Mathematical Sciences Norwegian University of Science and Technology N-7491 Trondheim, Norway Voice: +47-7359-3533 URL : http://www.math.ntnu.no/~hrue Fax : +47-7359-3524 Email: havard.rue at math.ntnu.no
2008 Jun 18
1
strsplit and the empty string
Hello, I am wondering about the behaviour of strsplit. When the pattern matches the beginning of the search string, the mepty string is added to the result, but that's not the case when the pattern matches the end of the search string: strsplit(" hello dolly ") [1] "" "hello" "dolly" The man for strsplit explains the algorithm: " The algorithm
2009 Feb 12
0
Patch for src/main/character.c, systematizing recent fix to do_grep
The attached patch provides a modification to the recent fix/improvement to do_grep already included in the most recent development version. The original fix added new functionality to the grep function by adding a new parameter, 'invert'. In the source code for the underlying do_grep, the value of the parameter is used to invert the logical match-no match flag vector ind. The
2005 Nov 25
1
Use of nesting in lmer- error in numerical expression
Dear R users, I am trying to fit a GLMM using lmer to a dataset where the brood identity (LNRREIR) is nested within mothers identity. The reason for this is that each mother can have several nests within each year and also between years. I am running the following script (actually I have tried all different combinations with LNRREIR and mother): mod <- lmer(sr~z.hatchday +
2019 Jan 24
1
Bug or undocumented behavior in normalizePath() with file system links on windows
Hello, I discovered a bug or undocumented behavior in normalizePath steps to reproduce: execute normalizePath on a folder link on windows. When you are on a non-english windows box, you likely have links in place for windows' default folders, e.g. "C:\Programme" linking to "C:\Program Files" on german windows boxes. Thus executing
2018 Nov 29
0
named arguments discouraged in `[.data.frame` and `[<-.data.frame`
Well, the situation with `[.data.frame` (and [<-) is complicated by the fact that the data.frame-method is not a primitive, but the generic IS. I'm not sure about dispatch for primitive-generics, but I bet it's done on the first argument (as with S3). Which means `[`(j=1:2,d,i=1) has nothing to do with `[.data.frame`, as some internal code equivalent to something like `[.integer` is
2010 Feb 04
1
Bug in as.character? (PR#14206)
A long formula which is converted using as.character, looses its last part: ``diagonal = 1e-12)'' Shorter formula is ok though. Best, H??vard ************ Browse[2]> formula.str y ~ -1 + b1 + b2 + b3 + b4 + b5 + b6 + b7 + b8 + b9 + b10 + b11 + b12 + b13 + b14 + b15 + b16 + b17 + b18 + b19 + b20 + b21 + b22 + b23 + b24 + b25 + b26 + b27 + b28 + b29 + b30 + b31 + b32 +
2005 Jun 27
1
Blank messages and problems starting Dovecot
When I use Evolution for viewing my e-mail and display full headers, no content is shown. The number of messages indicated in Evolution is however correct. Logging into webmail (Squirrelmail) doesn't work either, saying "Error connecting to IMAP server: localhost. 13 : Permission denied". I have verified that ~/Maildir/new actually contains valid e-mails. Does anyone have