similar to: bug? exactRankTests install anomaly (PR#3394)

Displaying 20 results from an estimated 1300 matches similar to: "bug? exactRankTests install anomaly (PR#3394)"

2005 Mar 21
1
anomalous result for wilcox.exact in exactRankTests
Hi, In the exactRankTest package, I've become aware that you can get anomalous p-values (i.e., above 1) from the wilcox.exact method, as in: > wilcox.exact(c(-0.6,0.8,-0.5)) Exact Wilcoxon signed rank test data: c(-0.6, 0.8, -0.5) V = 3, p-value = 1.25 alternative hypothesis: true mu is not equal to 0 This is disturbing. Has anyone encountered this before, and if so
2007 Jun 29
2
Installing packages.
Um texto embutido e sem conjunto de caracteres especificado associado... Nome: n?o dispon?vel Url: https://stat.ethz.ch/pipermail/r-help/attachments/20070629/17f7d932/attachment.pl
2000 Mar 03
0
nmdb anomaly in SWAT
G'day, We are running Samba 2.04b on a Solaris 2.6 box as well as Samba 2.04b on a Solaris 7 box. In SWAT on the Solaris 7 box the nmbd service is seen to be running. On the Solaris 2.6 box SWAT says the nmbd service is not running. Doing a ps on the Solaris 2.6 box shows nmbd to be running. What is responsible for this anomaly? Any help would be greatly appreciated. Regards, Dave Lovett
2009 Jul 13
0
Anomaly in sample() function
Hi all Maybe someone knows a way to solve this anomaly in sample(): I like to compute a sample (n=100) with replications from a population of 2500 units but if I draw repeated samples from it I dont get what seems to be a representative sample if I look at other partitions of the population. Enclosed is the population g99 with 4 columns: (units, partition 1 (site), partition 2 (type), weights);
2009 Mar 16
1
Uniroot and Newton-Raphson Anomaly
I have the following function for which I need to find the root of a: f <- function(R,a,c,q) sum((1 - (1-R)^a)^(1/a)) - c * q To give context for the problem, this is a psychometric issue where R is a vector denoting the percentage of students scoring correct on test item i in class j, c is the proportion correct on the test by student k, and q is the number of items on the test in total. I
1999 Dec 20
4
2.0.6/Sol. 251/NTW4 - Drive mapping anomaly
Has anyone seen the following anomaly? When I first connect to the Samba server, I run a logon script that maps 5 shares to drives F,G,H,L,M. Some time later, when I check "My Computer", I find that the share mapped to H: has been mapped to all the remaining drive letters as well! For example, after I mount /users on G: and /programs on H:, I'll notice at some point later that I
2010 Apr 02
1
What should I do regarding "DLL attempted to change..." warning ?
Hi all, The call to: library(rJava) Results in the following warning massage: Warning message: In inDL(x, as.logical(local), as.logical(now), ...) : DLL attempted to change FPU control word from 8001f to 9001f After some searching I found the following explanation: > R expects all calls to DLLs (including the initializing call) to leave the > FPU control word unchanged. Many run-time
2017 Sep 08
0
one sample permutation test using package 'coin'
Using the package ?exactRankTests? one can execute a one-sample permutation test for a hypothesized location parameter of 0 like: perm.test(rnorm(30,0)) The package ?exactRankTests? seems now to be deprecated in favor of the ?coin? package which as I understand is a superset of ?exactRankTests? in terms of functionality. The ?coin? package allows one to run a two-sample permutation test using
2010 Feb 08
1
Wilcoxon signed-ranks test using package coin ?
Given the following data, and hypothesized median M.0 I've found a method to implement the Wilcoxon signed-rank test. Data: (with one zero difference and tied ranks) x <- c(136, 103, 91, 122, 96, 145, 140, 138, 126, 120, 99, 125, 91,142, 119, 137) M.0 <- 119 > library(exactRankTests) Package ?exactRankTests? is no longer under development. Please consider using package ?coin?
2009 Oct 27
1
wilcox.exact() problem
Dear R friends, here I write again about the wilcox.exact() problem. I want to compare two sets of categorical data, and in one case it says "negative length vectors not allowed", and in the other one I get the error "cannot allocate vector of length ...". On http://rapidshare.com/files/298621893/wilcox.exact_trouble.Rdata.html you can download the data that cause the
2011 Apr 12
4
anomaly warzone earth
Hello, trying to get this game to run on wine 1.3.16 on a debian sid amd64 box. This is what the error output when running it : Code: $ wine /media/Data/Program\ Files/Anomaly\ -\ Warzone\ Earth/AnomalyWarzoneEarth.exe err:winedevice:ServiceMain driver L"SecDrv" failed to load wine: Unhandled page fault on read access to 0x00000000 at address 0x7e084c95 (thread 0009), starting
2003 Mar 10
1
DLL error after update.packages
When updataing packages from CRAN, I got the following error message: updating HTML package descriptions Warning message: DLL attempted to change FPU control word from 8001f to 9001f Everything seems fine, the packages updated, just wondering what this was. R 1.6.2 on Windows 98. Details on the packages dowloaded are below. ________________________________________________ update.packages()
2011 Mar 29
0
[LLVMdev] Anomaly with CallGraph construction
Hi Gabriel, ... > Summarizing, I have two questions: 1) is the CallGraph analysis "working as > intended" here?; and 2) what would be the correct approach > to modifying the proposed analysis in order to detect that randlc() is being > called in that CallInst ? the reason that the callgraph analysis does not try to understand indirect calls like this is that other passes
2012 Jul 12
1
permutation test on paired samples
Hi, I'm trying to run a permutation test on paired samples. First I tried the package "exactRankTests": require("exactRankTests") x <- c(1.83,0.50,1.62,2.48,1.68,1.88,1.55,3.06,1.30) y <- c(0.878,0.647,0.598,2.05,1.06,1.29,1.06,3.14,1.29) wilcox.test(x,y,paired = TRUE,alternative = "greater") perm.test(y,x,paired = TRUE,exact = TRUE,alternative =
2008 May 03
2
Stacked bar plot anomaly When column contains a negative and a positive value
Hello users, I've noticed a problem when creating a stacked column plot when a column contains a negative and a positive value. e.g. series1<-c(-1,-2, 3, 4, 5) series2<-c( 5, -4,-3,-2, 1) data<-rbind(series1,series2) barplot(as.matrix(data), beside=FALSE) In these cases (i.e. first, third and fifth columns) the plotting is not handled correctly. Compare this output with that
2004 Jul 21
0
list archive anomaly
At the list archive page (http://mailman.ds9a.nl/pipermail/lartc/) there is an amazing message from the future: the year 2032 (q1). Not that I know anything about mailman, but someone might want to "maintain" that. -- ****************************************************************** Glen W. Mabey Glen.Mabey@usu.edu http://mabeys.homelinux.com/glen/
2008 Jun 10
0
Seeking Collaboration in Development and Validation of an Anomaly Detection System for Asterisk
We are currently doing research and development on an open-source runtime application monitoring system for Asterisk. This system is aimed at detecting and mitigating problems or vulnerabilities that arise from residual errors--whether unintentional or malicious--either in the application code or in its configuration or usage patterns. It can, for example, be used to detect and prevent
2011 Aug 08
0
Re: anomaly warzone earth
I did all you posted scripts and it all worked out...Finally miracle happened. :D
2011 Mar 23
0
strange anomaly/bug with cupsaddsmb and 64bit drivers
This is probably a CUPS bug but maybe not, I'll mention it here just in case. When using cupsaddsmb to install 64bit drivers the drivers must be in the (maybe distro/configure dependent): /usr/share/cups/drivers/x64 to be sure that's "x64" with a lower case "x". The cupsaddsmb app ignores the drivers if the subdirectory is named with an uppercase "X" (X64).
2008 May 01
1
FPS Anomaly (screenshots)
When I run naiture in WINE (it is a Windows based program that I am trying to move to Linux/OpenSource) it says the FPS is like 500+ with just a block in the center. Yet the actual visual framerate is quite choppy: [Image: http://www.naiture.net/snap/wine1.png ] Here it is running in full, the reported FPS is more realistic: [Image: http://www.naiture.net/snap/wine2.png ] Why would the