[R] for help

2006-10-24 Thread Aimin Yan
I have a question in R. In directory H:/Delta_angle I have 19 files like this: ALA.delta ASN.delta ASP.delta CYS.delta GLN.delta GLU.delta HIS.delta ILE.delta LEU.delta LYS.delta MET.delta PHE.delta PRO.delta SER.delta THR.delta TRP.delta TYR.delta VAL.delta I want to read these files to 19 data

[R] For help

2004-12-17 Thread ys03165003
Hi During using the R(vision 2.0.1), I meet a problem. I would like to do the Multiple Correspondence Analysis, but when I use the "< mca(lf, nf = 2, abbrev = FALSE)", the sentence "Error: couldn't find function 'mca'" will appear. So, please tell me how can I use the "mca()", thanks!

Re: [R] for help

2006-10-24 Thread Charles C. Berry
This question (paraphrase: How do I process a lot of homologous files?) or something similar has been asked (and answered) a lot lately. For example, look at this thread from today's posting to r-help: http://news.gmane.org/find-root.php?group=gmane.comp.lang.r.general&article=72254 Chuck p.

Re: [R] for help

2006-10-24 Thread Petr Pikal
Hi On 24 Oct 2006 at 10:03, Aimin Yan wrote: Date sent: Tue, 24 Oct 2006 10:03:08 -0500 To: r-help@stat.math.ethz.ch From: Aimin Yan <[EMAIL PROTECTED]> Subject: [R] for help > I have a question in R. > >

Re: [R] For help

2004-12-17 Thread Jin Shusong
On Sat, Dec 18, 2004 at 11:14:16AM +0800, [EMAIL PROTECTED] wrote: > Hi > > During using the R(vision 2.0.1), I meet a problem. I would like to do the > > Multiple Correspondence Analysis, but when I use the "< mca(lf, nf = 2, > abbrev = > > FALSE)", the sentence "Error: couldn't find functio

Re: [R] For help

2004-12-17 Thread Spencer Graves
By requesting 'help.search("mca")', I learned that mca was in "library(MASS)". Did you try "library(MASS)" before your mca command? hope this helps. spencer graves p.s. Using 'help.search' was suggested by the posting guide, "www.R-project.org/posting-guide.html". [EMAIL PROT

[R] R -- for help

2003-10-23 Thread jbwu
hi, guys: I have a question on how to read data from file in which the length of each line is unfixed. For instance, the data in sample.dat are: 1 2 3 4 5 6 7 8 I want to read this kind of data into a matrix as: 1 2 3 4 5 6 7 0 8 0 0 0 Thank you Jianbing Wu _

Re: [R] R -- for help

2003-10-23 Thread Prof Brian Ripley
Look at the `fill' argument in ?read.table. This fills with NAs, but you can convert those to 0's later (although it may be better to do this in the analysis). On Thu, 23 Oct 2003, jbwu wrote: > hi, guys: > I have a question on how to read data from file in which the length of each > line is un

[R] for help about R

2003-11-05 Thread L Z
just want to ask the following > > question: > > > probit<-glm(y1~x1+x2-1, > > family=binomial(link=probit)) > > Warning message: > > fitted probabilities numerically 0 or 1 occurred in: > > glm.fit(x = X, y = Y, > > weights = weights, start = start, etastart = > > etastart, > > why does that happ

RE: [R] for help about R--probit

2003-11-06 Thread L Z
ven Sullivan, Ph.D. Senior Associate The QED Group, LLC 1250 Eye St. NW, Suite 802 Washington, DC 20005 [EMAIL PROTECTED] 202.898.1910.x15 (v) 202.898.0887 (f) 202.421.8161 (m) -Original Message- From: L Z [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 05, 2003 12:10 PM To: [EMAIL PR

RE: [R] for help about R--probit

2003-11-06 Thread Prof Brian Ripley
CTED] > 202.898.1910.x15 (v) > 202.898.0887 (f) > 202.421.8161 (m) > > > -Original Message- > From: L Z [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 05, 2003 12:10 PM > To: [EMAIL PROTECTED] > Subject: [R] for help about R > > just want to a

[R] for help about MLE in R

2004-02-05 Thread Edward Sun
Dear Sir, I am using R to estimate two parameters in Normal distribution. I generated 100 normal distributed numbers, on which to estimate the parameter. The syntax is: fn<-function(x)-50*log((y)^2)+50*log(2*pi)-(1/2*(z^2))*(sum((x-y)^2)) out<-nlm(fn, x, hessian=TRUE) but it does not work. Coul

[R] For Help in libm_c32.so for fortran

2007-04-23 Thread savita rai
Dear Sir I am running a script file for fortran but it showing error i.e. .sgb.x : /sbin/loader: Fatal Error : cannot map libm_c32.so here sgb.x is its output file that I have got after running make file. I have seached this library file inside /usr/shlib directory its not there. Please tel me

Re: [R] for help about MLE in R

2004-02-05 Thread Peter Dalgaard
"Edward Sun" <[EMAIL PROTECTED]> writes: > Dear Sir, > > I am using R to estimate two parameters in Normal distribution. I > generated 100 normal distributed numbers, on which to estimate the > parameter. The syntax is: > > >fn<-function(x)-50*log((y)^2)+50*log(2*pi)-(1/2*(z^2))*(sum((x-y)^2)) >