Displaying 6 results from an estimated 6 matches for "warneg".
Did you mean:
warned
2004 Jun 05
3
'cygpath -d' to fix windows paths with spaces
The cygwin 'cygpath' command can now convert arbitrary windows and unix
paths into the short ms-dos 8.3 equivalents. This tools might allow the
windows build system to better deal with those messy long Windows file and
directory names that contain spaces.
EG:
warneg@GRDGROL99X1028: src [1]$ pwd
/cygdrive/c/Documents and Settings/WarnesGR/My
Documents/cygwin_home/src/gregmisc/src
warneg@GRDGROL99X1028: src [1]$ cygpath -d "`pwd`"
c:\DOCUME~1\WarnesGR\MYDOCU~1\CYGWIN~1\src\gregmisc\src
-Greg
Gregory R. Warnes
Manager, Non-Clinical Statistics
Pfizer...
2002 Feb 22
0
FW: Cent. Mov. Ave
...next N/2 points, so you may have to modify it to get what
you want.
It will be in the next gregmisc package, which will go out in a month or so
when the publication review process here finishes. (I hate red tape!)
-Greg
########### CODE #############
# $Id: running.R,v 1.2 2001/09/01 00:01:54 warneg Exp $
#
# $Log: running.R,v $
# Revision 1.2 2001/09/01 00:01:54 warneg
# Release 0.3.0
#
# Revision 1.1 2001/08/25 05:53:37 warneg
# Initial CVS checkin.
#
#
"running" _ function( X, fun=mean, width=min(length(X),20),
allow.fewer=FALSE,...)
{
n _ length(X)
f...
2002 Jan 10
4
Test if beta is different from something other than 0
Is there a function/package that will allow you to test the hypothesis beta1
= x in a
simple linear regression, where x is a constant? The AOV tests if beta1 in
different from
0 but what if I want to know if beta1 one is different from 1?
With best wishes and kind regards I am
Sincerely,
Corey A. Moffet
Instructor
Department of Range, Wildlife, and Fisheries Management
Mail Stop 2125
Texas
2001 Jun 14
1
expand.model.frame() fails when subset is specified (PR#979)
...odel, ~ z)
Error in [.data.frame(structure(list(y = c(1, 2, 3, 4, 5, 6, 7, 8, 9, :
Object "m" not found
The patch below uses "eval" and "call" with the appropriate
environment instead of calling model.frame directly. This results in:
> source("/home/warneg/R-src/R-1.2.3/src/library/base/R/expand.model.frame.R")
> expand.model.frame(model, ~ z)
y x z
1 1 1 1
2 2 2 2
3 3 3 3
4 4 4 4
5 5 5 5
6 6 6 6
7 7 7 7
-Greg Warnes
---------START OF PATCH----------
diff -c R-1.2.3.orig/src/library/base/R/expand.model.frame.R
R-1.2.3/src/library
/base/R...
2001 Oct 02
4
plot of Bernoulli data
I have some Bernoulli data something like this:
x<-sort(runif(100,1,20))
p<-pnorm(x,10,3)
y<-as.numeric(runif(x)<p)
plot(x,y)
lines(x,p)
This plot is not very satisfactory because the ogive does not visually
fit the (0,1) points very well, and also because the points tend to fall
on top of one another. The second problem can be eliminated by adding
vertical jitter. However I was
2005 Aug 31
0
Advice about system for installing & updating all R packa ge in a Linux Lab?
...m the package repositories:"
echo "##"
echo "## - CRAN: http://cran.r-project.org/"
echo "## - BioCondictor: http://www.bioconductor.org"
echo "##"
echo "## As well as Pfizer custom packages"
echo "## "
echo "## - Rlsf: ~warneg/src/R/Rlsf"
echo "## - AffyTool: nlvfs016:rstat-data/"
echo "## ExpressionAnalysis/StandardAffyAnalysis/AffyTool"
echo "##"
echo "##############"
echo "##"
if [ -z '$1' ]; then
RCMD="R"
echo "## Param...