search for: ramag

Displaying 20 results from an estimated 49 matches for "ramag".

Did you mean: ramas
2008 Mar 14
1
Buggy Kinderman-Ramage (PR#2846)
Unfortunately, RNGkind is buggy. It will not generate warnings except the full name "Buggy Kinderman-Ramage" is supplied for normal.kind. match.arg is supposed to be called before "==" comparison. ======================================== Shengqiao Li Research Associate The Department of Statistics PO Box 6330 West Virginia University Morgantown, WV 26506-6330
2018 Sep 19
4
Bias in R's random integers?
On Wed, 19 Sep 2018 at 13:43, Duncan Murdoch <murdoch.duncan at gmail.com> wrote: > > I think the analyses are correct, but I doubt if a change to the default > is likely to be accepted as it would make it more difficult to reproduce > older results. I'm a bit alarmed by the logic here. Unbiased sampling seems basic for a statistical language. As a consumer of R I'd
2003 Apr 25
4
Kinderman-Ramage (PR#2846)
Hi, Our department has detected a bug in the implementation of the Kinderman-Ramage generator for normal random variates in version 1.7.0, which can be seen from the below R session. (Consecutive calls for chisq.test(...) always gives p-values very close to 0.) We have already encountered this bug in version 1.6.2 The error is in file R-1.7.0/src/nmath/snorm.c Here is a patch...
2018 Sep 20
1
Bias in R's random integers?
...modify results used for comparisons in the tests. Since package testing is usually for code checking rather than statistical results, not using the best available generator is not usually an issue. Most of my own package testing already specifies the generator, lots uses "buggy Kinderman-Ramage" because tests were set up a long time ago. I will have to change package setRNG which warns when the default generator changes. (This warning is intentional because I was bitten badly by a small change in the S generator circa 1990.) > If this goes into base R, what's the best wa...
2018 Sep 19
0
Bias in R's random integers?
...the old results depend on the biased algorithm, then they are > false results? > Balancing backward compatibility and correctness is a tough problem here. If this goes into base R, what's the best way to do it? What was the protocol for migrating away from the "buggy Kinderman-Ramage" generator, back in the day? (Version 1.7 was sometime between 2001 and 2004). I couldn't find the exact commit in the GitHub mirror: this is related ... https://github.com/wch/r-source/commit/7ad3044639fd1fe093c655e573fd1a67aa7f55f6#diff-dbcad570d4fb9b7005550ff630543b37 === ?nor...
2003 Sep 17
3
More files randomly corrupted
...re it out, I don't know whats causing this or where to start really. To make it worse someone told me there isn't anything in the samba code to cause this. Finally all the files that seem to be corrupted when being read, seem to be intact on the file system they are stored on. Steve Jr Ramage -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (MingW32) iD8DBQE/Z8E/EK+EAP2ExcQRAqOVAKDIrF0eQ49ncWFleew/pHUWFck2jACfcmAg Q1T4tycY/pCCRfHadifb4pg= =rotn -----END PGP SIGNATURE-----
2005 May 24
3
Wine on Macs ?
Now that MacOS is Unix-based, can Wine be run on them ? -- Andrew You can be the captain I will draw the chart Sailing into destiny Closer to the heart Closer to the Heart by Rush (A Farewell to Kings, 1977) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2009 Jun 22
5
Further .NET woes
Further to advice from the list, I tried using winetricks. Below you can see a list of available packages and the one I felt was the answer (mono is the linux implementation of .NET). Can anyone tell me what I am doing wrong ? andrew at zeus:~/Download/Fictionwise/Mobipocket$ winetricks Usage: /usr/bin/winetricks [options] package [package] ... This script can help you prepare your system
2015 Feb 08
3
Which function can change RNG state?
Today I struggled for hours to understand some unexpected package test results. It turned out that this is because package "parallel", buried deep in my dependencies, calls runif() during it's initialization and in this way changes the random number sequence. This seems to be a part of a more general question--which kind of functions can we trust if we want to preserve random
2015 Feb 08
0
Which function can change RNG state?
...etting old and forgetful I can remember exactly one such change where behaviour was changed, and (one of the) generators was altered---if memory serves in the earlier days of R 1.* days . [ Goes digging...] Yes, see `help(RNGkind)` which details that R 1.7.0 made a change when "Buggy Kinderman-Ramage" was added as the old value, and "Kinderman-Ramage" was repaired. There once was a similar fix in the very early days of the Mersenne-Twister which is why the GNU GSL has two variants with suffixes _1998 and _1998. So your issue seems like pilot error to me: don't attach the...
2006 Dec 31
2
Windows .SYS Drivers
Is there any way to get .SYS device drivers working with wine ? I have just acquired a Franklin eBookMan and want to use it to read. But the Linux program (ebmsync and ebmsync.tk) will not work on my (SuSE 10.1) laptop. -- Andrew "Oh, bother," said the Borg. "We've assimilated Pooh."
2009 Jun 21
2
Problems Installing .Net 1.1 SP1
I just downloaded TurboDelphi from edn.emarcadero.com (the full 2006 package) and am trying to install it under wine. Installation stops with a message that it needs DotNet 1.11 installed so I downloaded the .Net package from Microsoft. For some reason, this version will not install - I had previously tried .Net 2.0 and .Net 1.1. The link below leads to a file containing the command-line
2005 Mar 18
4
wine-20050211 on SuSE 9.2
I am trying to install wine-20050211 on my second system, which runs SuSE 9.2. After much faffing around I finally managed to download and install bison, which allowed ./config to complete. A warning at the end advised me to install xlib-devel or xfree86-devel. Googling around I found the RPM for XFree86-devel for SuSE 9.1 so I downloaded it and started to install it. Unfortunately, a
2003 Mar 25
1
BUG report : 'rnorm' (LINUX, R 1.6.2) (PR#2682)
...orm(rnorm(1000000)),100) The result is the p-value of a goodness of fit test (chisquare test). It should be a uniform random number in [0,1]. However, if this test is repeated, one almost every time gets an number near one (0.99...) This problems happens only by using normal.kind="Kindermann-Ramage" (the default). This bug also appears in all random variate generation that depend on 'rnorm', like 'rgamma'. With regards, Günter Tirler -- ----------------------------------------------------------------------------- Günter Tirler | University of Economics and Bu...
2002 Aug 12
1
set.seed
...ation if it's necessary later. Using set.seed, I can certainly get reproducible results, but not the results I get on the first pass. Here's an example: # Generate a random number to initialize > runif(1) [1] 0.965875 > RNGkind() [1] "Marsaglia-Multicarry" "Kinderman-Ramage" > > # Save random seed > temp.seed <- .Random.seed > > # Proceed to generate random uniforms > runif(5) [1] 0.18734034 0.02723140 0.46396251 0.10602243 0.64362777 > > # try to reproduce this sequence > set.seed(temp.seed, "default") > runif(5) [1] 0...
2016 Sep 01
2
A bug in the R Mersenne Twister (RNG) code?
...be > worth considering a change. But changing the default RNG definitely > introduces problems in reproducibility, Well "problems in reproducibility" is a bit vague. Results would always be reproducible by specifying kind="Mersenne-Twister" or kind="Buggy Kinderman-Ramage" for older results, so there is no problem reproducing results. The only problem is that users expecting to reproduce results twenty years later will need to know what random generator they used. (BTW, they may also need to record information about the normal or other generator, as well a...
2003 Jun 16
1
R 1.7.1 is released
...A related problem sometimes broke attaching a package that had methods for basic functions, such as names(), used in method selection. o Empty expressions as in return(x,) could generate subsequent segfaults: they are now errors. (PR#2880) o The Kinderman-Ramage Normal Random Generator had several problems leading to not-quite normally distributed variates (PR#2846). One problem was traced to an error in the original 1976 JASA paper! Thanks to Josef Leydold and his team for investigating this. The old generator has been r...
2003 Jun 16
1
R 1.7.1 is released
...A related problem sometimes broke attaching a package that had methods for basic functions, such as names(), used in method selection. o Empty expressions as in return(x,) could generate subsequent segfaults: they are now errors. (PR#2880) o The Kinderman-Ramage Normal Random Generator had several problems leading to not-quite normally distributed variates (PR#2846). One problem was traced to an error in the original 1976 JASA paper! Thanks to Josef Leydold and his team for investigating this. The old generator has been r...
2004 Dec 04
1
Re: Your computer account was not found or the password was incorrect
.../var/samba/profiles/ ----- Finally one other thing, the password from the NT Domain controller for the trust account matches whats in tdbsam. (Oh yeah anyone know why mysql isn't recognized by pdbedit or samba as a valid backend, and I can't find mysql.so) -- --------------- Steve Ramage SJrX Networks http://www.sjrx.net. Vancouver, BC
2005 May 22
1
Installation Problems
Having uninstalled the old Wine installation from SuSE 9.2 so that I could install the 20050419 RPM, I am having problems running programs. Trying to install an audio converter, I get the following andrew@zeus:~/Download/Software> wine waveatmp3_setup.exe err:module:import_dll Library ole32.dll (which is needed by L"c:\\windows\\system\\shlwapi.dll") not found