similar to: problems in 2.11 with Hmisc

Displaying 20 results from an estimated 10000 matches similar to: "problems in 2.11 with Hmisc"

2010 Apr 30
1
Problem: packages TinnR, Hmisc, applications Tinn-R and R version 2.11.0
Hi, First: sorry for my bad English! I have received several emails reporting problems using Tinn-R with the new R version (2.11.0). This email is meant to assist the users. This problem is new and is related with R 2.11.0 and Hmisc package for Windows! After download and install R 2.11.0pat under Linux and Windows, see below my results: a) Under Linux (Open SUSE 11.3) - I found no problem
2010 Nov 11
2
r-2.12.0 - Hmisc
Hello, I am working on a HP Laptop with R 2.12 just installed, I tried: R version 2.12.0 (2010-10-15) Copyright (C) 2010 The R Foundation for Statistical Computing ISBN 3-900051-07-0 Platform: i386-pc-mingw32/i386 (32-bit) ... library(Hmisc) Loading required package: survival Loading required package: splines Error in library.dynam(lib, package, package.lib) : DLL 'cluster' not found:
2010 Sep 12
0
packages update and error: no package called 'lattice',Error: package 'Hmisc could not be loaded; Tinn-R
Dear all, Since some months after updating packages via update.packages(ask='graphics'), sometimes I loose 'lattice', although already installed. At R restart, I get: Error in loadNamespace(i[[1L]], c(lib.loc, .libPaths())) : there is no package called 'lattice' Error: package 'Hmisc' could not be loaded In this case I must re-install 'lattice' and
2012 Oct 01
2
Hmisc describe error
Describe fails for me with a message similar to what was an issue in 2008 and got fixed according to posts. R version 2.15.0 (2012-03-30) Copyright (C) 2012 The R Foundation for Statistical Computing ISBN 3-900051-07-0 Platform: i386-pc-mingw32/i386 (32-bit) # output truncated > options(chmhelp = FALSE, help_type = "text") > .help.ESS <- help >
2009 May 28
0
R-help Digest, Vol 75, Issue 28
> >> From: Jeff Newmiller <jdnewmil at dcn.davis.ca.us> > >> To: "R Heberto Ghezzo, Dr" <heberto.ghezzo at mcgill.ca> > >> Date: Wed, 27 May 2009 09:00:44 -0700 > >> Subject: Re: [R] R in Ubunto > >> R Heberto Ghezzo, Dr wrote: > >> > >> ? ?Hello , I do not know anything abount Ubunto, but I found a Portable
1998 Dec 07
0
R for WINDOWS (was R-0.63.1 is released)
> To: "Heberto Ghezzo" <heberto at MEAKINS.Lan.McGill.CA> > Subject: Re: [R] R-0.63.1 is released > From: Peter Dalgaard BSA <p.dalgaard at biostat.ku.dk> > > "Heberto Ghezzo" <heberto at MEAKINS.Lan.McGill.CA> writes: > > > Sorry for a silly question but. . . > > why the new version is 'bdr0631' ? what is the
2008 Sep 29
1
describe function in package Hmisc and function format.dates in chron (PR#13087)
Full_Name: Kem Phillips Version: 2.7.1 (2008-06-23) OS: Windows Xp professional Submission from: (NULL) (98.221.200.108) The Hmisc function describe fails, giving the error message: Error in formatDateTime(dd, atx, !timeUsed) : could not find function "format.dates" Loading the chron package, where function dates apparently resides, does not fix the problem. Note
2010 Mar 12
2
unknown compression
Hello, I am trying to modify some functions in an existing package. I can get a function by just typing the name in the console, but how can I get all the functions in a package? the ./R/ subdirectory has files xx.rdb and xx.rdx which I can not decompress with 7-zip or with unzip, unrar etc. The help files are compressed with gzip in the ./man/ folder and can be unzipped easily. Thanks for your
2000 Sep 13
2
minimization
Hi, I got a code from S that uses 'nlminb' to minimize a function with constraints. Is there a similar function in R? Thanks. R. Heberto Ghezzo Ph.D. Meakins-Christie Labs McGill University Montreal - Canada heberto at meakins.lan.mcgill.ca -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
2001 Dec 12
1
again evaluations
Hello, I wrote the following function to compute multiple comparisons in a one way anova and randomized blocks anova. aov1 <- function(y,g,s=NULL,comp="mca",meth="Sidak") { # fun <- function(x) c(mean(x,na.rm=T),sd(x,na.rm=T),length(x[!is.na(x)])) # li <- length(unique(g)) cat(" Analysis of Variance with Multiple comparisons\n\n") cat("
2003 Jan 29
3
na.rm in sd()
Hello, I think this qualify as a bug > x<-c(1,2,3,4,NA,6,7) > mean(x) [1] NA > mean(x,na.rm=T) [1] 3.833333 > sd(x) Error in var(as.vector(x)) : missing observations in cov/cor > sd(x,na.rm=T) Error in sd(x, na.rm = T) : unused argument(s) (na.rm ...) > var(x) Error in var(x) : missing observations in cov/cor > var(x,na.rm=T) [1] 5.366667 > why sd() does not
2012 Jul 31
2
help with a regression
Hello, I have a data frame with the following variables: ID, X1,X2,X3,X4,X5,Y1,Y2,Y3,Y4,Y5 and some other that do not matter, some of the X and Y can be missing (NA). I want to compute the slope of the linear regression Y ~ X for each subject, so using apply(DF,1,FUN,ra.rm=TRUE) now How do I define FUN? The X are different for each subject. Thanks for any help R.Heberto Ghezzo Ph.D. Montreal -
2003 Apr 24
4
problems with max.col()
Hello, I think the following qualify as a bug given: x<-c(1,2,3,4,2,4,2,2,4,2,2,2,4,3,2,1) z<-embed(x,4) z [,1] [,2] [,3] [,4] [1,] 4 3 2 1 [2,] 2 4 3 2 [3,] 4 2 4 3 [4,] 2 4 2 4 [5,] 2 2 4 2 [6,] 4 2 2 4 [7,] 2 4 2 2 [8,] 2 2 4 2 [9,] 2 2 2 4 [10,] 4 2 2 2
2003 Apr 24
4
problems with max.col()
Hello, I think the following qualify as a bug given: x<-c(1,2,3,4,2,4,2,2,4,2,2,2,4,3,2,1) z<-embed(x,4) z [,1] [,2] [,3] [,4] [1,] 4 3 2 1 [2,] 2 4 3 2 [3,] 4 2 4 3 [4,] 2 4 2 4 [5,] 2 2 4 2 [6,] 4 2 2 4 [7,] 2 4 2 2 [8,] 2 2 4 2 [9,] 2 2 2 4 [10,] 4 2 2 2
2004 Dec 21
0
Fwd: problems with limma
On Wed, December 22, 2004 12:11 am, r.ghezzo at staff.mcgill.ca said: > ----- Forwarded message from r.ghezzo at staff.mcgill.ca ----- > Date: Mon, 20 Dec 2004 15:45:11 -0500 > From: r.ghezzo at staff.mcgill.ca > Reply-To: r.ghezzo at staff.mcgill.ca > Subject: [R] problems with limma > To: r-help at stat.math.ethz.ch > > I try to send this message To Gordon
1998 Dec 07
0
HDF or netCDF
Hi, I saw some ref to R on HDF site and found some e-mails regarding them on Feb. Has there ben any developement on either of these software (HDF or netCDF)? I am primary interested in NT side, but Unix side will help to some degree. Thanks much in advance, ************************************************************** S. Hoon Yoon (Quant) Merrill Lynch
2006 Nov 06
1
Hmisc, latex cdec not as expected - again
Hello all. Sorry for reposting this message, but I accedently sent it in HTML-format the first time. I have encountered at problem when using the Hmisc package to generate latex-tabels. I can't seem to control the number of digits in the latex-file. I have used the Design and Hmisc packages for a while without this problem, but after upgrading to R-2.4.0 the problem has occured. I
2006 Nov 06
0
Hmisc, latex cdec not as expected
Hello all. I have encountered at problem when using the Hmisc package to generate latex-tabels. I can't seem to control the number of digits in the latex-file. I have used the Design and Hmisc packages for a while without this problem, but after upgrading to R-2.4.0 the problem has occured. I have mad a clean installation where I uninstalled all earliere version of R, and I
2001 Mar 14
2
scan
Hello, I have a problem. I have to read a HUGE file which has to be line processed, so I would like to use scan like p <- scan(pfile,what=c(0,0,0,"",0,""),nlines=1) but it continues to read the first line, so I have to add a skip and increment the skip after each read. It takes forever to read a test file of 1 Mb, the real one is in 60's Mb Is there a way to read line
2003 Jan 29
2
problems with by()
Hello, another problem. > x<-rep(1,10) > y<-rep(c(1,2),c(5,5)) > z<-seq(1:10) > ab<-data.frame(x,y,z) # now I want to do some work by the value of 'y' > by(ab,y,mean) y: 1 x y z 1 1 3 ------------------------------------------------------------ y: 2 x y z 1 2 8 # I do not want all the means, only the mean of 'z' > by(ab,y,function(x)