Displaying 20 results from an estimated 2000 matches similar to: "docu buglets for ar and friends"
2005 Apr 11
1
docu buglet
?oneway.test
contains:
|var.equal| a logical variable indicating whether to treat the variances 
in the samples as equal. If |TRUE|, then a simple F test for the 
equality of means in a one-way analysis of variance is preformed. If 
|FALSE|, an approximate method of Welch (1951) is used, which 
generalizes the commonly known 2-sample Welch test to the case of 
arbitrarily many samples.
I guess
2004 Oct 04
4
Off-Topic: LaTeX package listings
Hola!
I ask here since I learnt from this list that the LaTeX package listings 
should be good
for typesetting R code. I encountered one problem:
\begin{lstlisting}
      X %*% V
\end{lstlisting}
in the output the * in %*% disappears! same with %/%, etc, the /
disappears.
Any ideas?
Kjetil
-- 
Kjetil Halvorsen.
Peace is the most effective weapon of mass construction.
               -- 
2004 Nov 06
3
foreign(read.spss) in rw2000 and re2001beta
I encountered something strange with read.spss (package foreign, version 
0.7 with R2.0.0 and
version 0.8 with R2.0.1 beta, windows XP)
I made a test file test.sav with SPSS version 11.5.1
containing only one numeric variable, with a value label
for one value not occuring in the file. According to ?read.spss
this should result in a factor, but it results in all NA. Using the 
argument
2004 Sep 24
2
rw2000dev: problems with library(foreign)
I get the following
 > library(foreign)
Error in namespaceExport(ns, exports) : undefined exports: write.foreign
Error in library(foreign) : package/namespace load failed for 'foreign'
with rw2000dev as of   (2004-09-17
Kjetil
-- 
Kjetil Halvorsen.
Peace is the most effective weapon of mass construction.
               --  Mahdi Elmandjra
2004 Dec 08
2
Strange error from R CMD INSTALL
I am trying to install a local package and get this unexpected
error:
---------- Making package UMSA ------------
  adding build stamp to DESCRIPTION
  installing R files
  installing data files
  installing man source files
  installing indices
Error: couldn't find function "na.omit"
Execution halted
na.omit of course is in package stats, and that is listed in the
Depends field in
2005 May 28
3
Incompatibility with VGAM
I just discovered that when the VGAM package (not on CRAN) is loaded,
glm() doesn't work. This is because VGAM defines a family function() 
which gets found
by glm() in place of the family function from stats.
Then VGAM:::family returns an object which doesn't have a $family 
component, (it has a component
$vfamily).
I thought namespaces should protect us from this happening?
Kjetil
-- 
2004 Oct 06
1
problems with bitmap images in windows XP
This is rw2000 on windowsXP
 jpeg("test.jpeg", bg="orangered")
 plot(1:10, 1:10, col="green")
 dev.off()
------
jpeg("test.jpeg", bg="blue")
 plot(1:10, 1:10, col="red")
 dev.off()
-------
 jpeg("test.jpeg", bg="green")
 plot(1:10, 1:10, col="red")
 dev.off()
---
jpeg("test.jpeg",
2004 Oct 29
1
as.list.matrix
I found the need of converting a matrix into a list of its columns
(for use with do.call), and was surprised there was no method
as.list.matrix, it could easily be a part of as.list default
I wrote
my.as.list.matrix <- function(mat) {
       if(!is.matrix(mat))stop("Argument must be a matrix")
       n <- NCOL(mat)
       res <- vector(mode="list", length=n)
      
2005 Aug 04
3
Odd timing behaviour in reading a file
Hi all,  please don't ask me why I tried this but.......
I have observed some odd behaviour in the time taken to read a file. I 
tried searching the archives without much success, but that could be me.
The first time I read a (60Mb) CSV file, takes a certain amount of time. 
The second time takes appreciably longer and the third and subsequent 
times very much shorter times. See below,
$
2002 May 15
3
Processing "vignette" files
Is there any way to process the "vignette" documantation files?
I have been looking at the bioconductor packages and most of them have
*.Rnw files in doc directories.  They look like regular TeX but have
sections showing R code that seem to choke TeX.
Thanks,
Andy
__________________________________
Andy Jaworski
Engineering Systems Technology Center
3M Center, 518-1-01
St. Paul, MN
2007 Oct 25
2
self signed ssl cert on C5
Hi,
Does anyone have a pointer to correct documantation for generating and
installing a self signed ssl cert for use on httpd on a C-5 machine?
The docs say to use genkey but AFAIK upstream rm'd crypto-utils from the
distro and as such it is not available. I tried generating the cert on a C-4
machine using genkey and installing on the C-5 machine but I get the following
error when I try to
2005 Sep 01
3
source(file) => file becomes readonly
Hello,
when I work in R, I write code in a text file that I run with the "source(filename)" command. In R2.1.1 the file is read-only while the source command is executed. This was not the case in R2.0.1. Is this a bug-fix or is it possible not to have the file read-only when executed?
Best regards
Vidar
2005 Mar 29
2
strange error with rw2010dev
With rw2010dev I get a strange  protect(): protection stack overflow
error with a small data frame which otherwise is usable:
If anybody wants to have a look I can provide an RData file
with the problematic data frame.
Doesn't seem to be necessary, the following simulated example
generates the error:
 > testmat <- matrix(1:80, 20,4)
 > dim(testmat)
[1] 20  4
 > str(testmat)
 int
2005 Oct 10
1
bug loading libraries with winXP and 2.2.0 but not 2.1.1 (PR#8200)
Full_Name: Ken Kompass
Version: 2.2.0
OS: winXP pro (2002 version, SP2)
Submission from: (NULL) (128.252.149.244)
Using R2.2.0 I get this error msg when loading certain bioconductor libraries
(depending on whether the library contains file named "all.rda" in R folder of
library) :
> library(multtest)
Error in open.connection(con, "rb") : unable to open connection
In
2005 Nov 09
1
using abline and a fitted 2nd degree formula
Hello all,
R2.1.1, Wk2
I am doing some two-step plotting, first using plot() to illustrate the
datapoints and then using abline() to place a trend line from a fitted
model into the plot.
Everything works well as long as the formula of the fitted model i of the
type:
m1 <- lm(Dependent ~ Independent)
then abline(m1) puts the proper straight line into the plot.
But if I use:
m2 <-
2011 Feb 27
2
regularized dfa rda (Klar): problems with predictions
Dear all, I am trying to do a n-fold cross-validation for a regularized discrimant function analysis using rda from the package klaR. However, I have problems to predict the groups from the test/validation sample. The exmaples of the R documantation and some online webpage also do not work. Does anybody know what I have done wrong? 
Here my code
# I want to use the first 6 observations for
2006 May 14
1
xen 3.02 with Intel VT
Dear mailing list
I just installed Suse 10.1 with Xen support on a computer with an
dualcore Intel processor. Is ther any documantation around on how to
configure the xen, that it supports the intels vt technologiy.
Thanks for your help
Damian
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2005 Nov 24
2
type III sums of squares in R
Hi everyone,
Can someone explain me how to calculate SAS type III sums of squares in 
R? Not that I would like to use them, I know they are problematic. I 
would like to know how to calculate them in order to demonstrate that 
strange things happen when you use them (for a course for example). I 
know you can use drop1(lm(), test="F") but for an lm(y~A+B+A:B), type 
III SSQs are only
2007 May 02
2
Virtual Machine Manager DNS resolver
Hi all,
I'm trying to install CentOS 5 as a domU in a CentOS5 dom0 system and I 
use Virtual Machine Manager to do it.
I've dumped all CentOS5 CDs contents in /var/www/CentOS to make a local 
http media source. It works fine in dom0 browser.
When I arrive in "Locating installation media[*]" step I point out to 
http://localhost/CentOS (which is perfectly active and available) 
2005 Jul 17
1
printing the name of the arguments passed to a function
R2.1.1
Win 2k
I have a function, B, within a function, A.
I would like to have B print the name of the argument passed to it (not
the value of the arguments).
i.e.,
 
A<-function()
{
    B<-function(x,y)
        {
         fit1<-lm(y~x,data=jo)
         print(summary(fit1)
         I want B to print the string "age" and the string "height".
        }
B(age,height)
}