R: [R] solving for a transition point in a piecewise nonlinear model

2004-07-14 Thread Vito Muggeo
Dear Robert, In general it may be difficult to estimate a model with generic (possibly nonlinear) functions before/after the changepoint to be estimated too. However if you are willing to make some restrinctions on your F1(.) and F2(.), you could semplify the problem.. For instance, have a look

Re: [R] summary() doesn't work with Date class objects

2004-07-14 Thread Uwe Ligges
Scott Waichler wrote: The handy function summary() doesn't work correctly with Date class objects: R.version.string [1] R version 1.9.1, 2004-06-21 b - as.Date(c(2002-12-26, 2002-12-27, 2002-12-28, 2002-12-29, 2002-12-30)) b [1] 2002-12-26 2002-12-27 2002-12-28 2002-12-29 2002-12-30 summary(b)

[R] RGui Titlebar

2004-07-14 Thread Erich Neuwirth
In the windows version (RGui), is there a way to set the text displayed in the titlebar of the R window? When I have 2 instances of RGui running, it would be helpul if the titlebar could help to understand which is which. -- Erich Neuwirth, Computer Supported Didactics Working Group Visit our

[R] A function likes table

2004-07-14 Thread Perez Martin, Agustin
DeaR useRs: Excuse me for my bad English. I am looking for a function likes table or ftable which returns the sum in a object by the cross tabulation, not the counts of the cross tabulation. I don’t know if everybody understand me. Thank you very much. Agus ---

[R] Re:

2004-07-14 Thread Yong Wang
use unique(data) or table(data) __ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Re: [R] Permutations

2004-07-14 Thread F. Tusell
Jordi: If I understand you well, the function below may do what you asked for. It is not clear to me from your posting wether e.g. 1 2 4 3 5 6 7 8 910 11 12 and 1 4 2 3 5 6 7 8 910 11 12 should count as differente permutations, i.e., wether once one pair of elements

Re: [R] Permutations

2004-07-14 Thread Erich Neuwirth
Perhaps what you want might better be described as ordered partitions? Is what you want the following: We study sequences of length 12 and divide them in 4 segments position 1 2 3, position 4 5 6, position 7 8 9, position 10 11 12, Find all permutation sequences of the numbers 1 to 12 with the

RE: [R] RGui Titlebar

2004-07-14 Thread Henrik Bengtsson
It look like this will be possible from R v2.0.0; From http://cran.r-project.org/bin/windows/base/CHANGES.rw2000dev Added functions setWindowTitle(), getWindowTitle(), and getIdentification(). To R-devel: Will this be 1) Rgui only? and/or 2) Windows only? Cheers Henrik Bengtsson

[R] SWIG for R

2004-07-14 Thread Hisaji ONO
Hi. Has R dev. team considered employing SWIG(http://www.swig.org/), which supports PHP, Ruby, Java etc., for connecting C/C++ libraries with R? Regards. __ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help PLEASE

Re: [R] (no subject) (was: Permutations)

2004-07-14 Thread Robin Hankin
Jordi try this R x - c(1,2,3, 10,11,12, 41,42,43, 81,82,83) R dim(x) - c(3,4) R x [,1] [,2] [,3] [,4] [1,]1 10 41 81 [2,]2 11 42 82 [3,]3 12 43 83 R jj - t(apply(x,1,sample)) R jj [,1] [,2] [,3] [,4] [1,]1 41 10 81 [2,]2 11 82 42 [3,]

[R] ROracle - fetch gives empty dataframe

2004-07-14 Thread Rado Bonk
Dear R-users, I was able to make ROracle package to connect to the DB (Oracle91, 64bit, on Solaris). But after executing siple SQL query, fetch commaned gives me an empty dataframe. ### RORACLE INSTALATION PROCEDURE ### R CMD INSTALL --configure-args='--enable-extralibs' --enable-oracle32=no

[R] list of S3-methods

2004-07-14 Thread Meinhard Ploner
how can I get a list of all S3-methods (of a package) such that I know which functions to include in the S3method() in the NAMESPACE-file? Maybe separated by generic=T/F. thx Meinhard Ploner Vienna __ [EMAIL PROTECTED] mailing list

Re: [R] RGui Titlebar

2004-07-14 Thread Uwe Ligges
Henrik Bengtsson wrote: It look like this will be possible from R v2.0.0; From http://cran.r-project.org/bin/windows/base/CHANGES.rw2000dev Added functions setWindowTitle(), getWindowTitle(), and getIdentification(). To R-devel: Will this be 1) Rgui only? and/or 2) Windows only? Well, the title

[R] ROracle - fetch gives...(corrected SQL code)

2004-07-14 Thread Rado Bonk
Sorry for posting the second time, I corrected the SQL code: PROBLEM: after executing simple statement, from within R, fetch function gives me the empty dataframe: ### CONNECTION, and SQL QUERY EXECUTION ora - dbDriver(Oracle) con - dbConnect(ora, rado/only2admin dbListTables(con)

Re: [R] list of S3-methods

2004-07-14 Thread Uwe Ligges
Meinhard Ploner wrote: how can I get a list of all S3-methods (of a package) such that I know which functions to include in the S3method() in the NAMESPACE-file? Maybe separated by generic=T/F. thx Meinhard Ploner Vienna Since one you does not register S3 methods (except for the Namespace file),

Re: [R] RGui Titlebar

2004-07-14 Thread Duncan Murdoch
On Wed, 14 Jul 2004 09:55:26 +0200, Henrik Bengtsson [EMAIL PROTECTED] wrote: It look like this will be possible from R v2.0.0; From http://cran.r-project.org/bin/windows/base/CHANGES.rw2000dev Added functions setWindowTitle(), getWindowTitle(), and getIdentification(). To R-devel: Will this

Re: [R] list of S3-methods

2004-07-14 Thread Meinhard Ploner
Meinhard Ploner wrote: how can I get a list of all S3-methods (of a package) such that I know which functions to include in the S3method() in the NAMESPACE-file? Maybe separated by generic=T/F. thx Meinhard Ploner Vienna Since one you does not register S3 methods (except for the Namespace file),

RE: [R] RGui Titlebar

2004-07-14 Thread Jens Oehlschlägel
An ugly workaround for versions prior 2.0 would be creating a copy of Rgui.exe and change its icon (google for 'change icon'). Under xp I also can just deactivate the icon on the compatibility tab (disable visual themes). Best Jens Oehlschlägel __

Re: [R] list of S3-methods

2004-07-14 Thread Uwe Ligges
Meinhard Ploner wrote: Meinhard Ploner wrote: how can I get a list of all S3-methods (of a package) such that I know which functions to include in the S3method() in the NAMESPACE-file? Maybe separated by generic=T/F. thx Meinhard Ploner Vienna Since one you does not register S3 methods (except

Re: [R] list of S3-methods

2004-07-14 Thread Martin Maechler
UweL == Uwe Ligges [EMAIL PROTECTED] on Wed, 14 Jul 2004 11:25:20 +0200 writes: UweL Meinhard Ploner wrote: how can I get a list of all S3-methods (of a package) such that I know which functions to include in the S3method() in the NAMESPACE-file? Maybe separated by

Re: [R] ROracle - fetch gives empty dataframe

2004-07-14 Thread Michael Seewald
Dear Rado, I think you didn't get a proper db connection at all. You forgot to specify the database to connect to. On Wed, 14 Jul 2004, Rado Bonk wrote: ### CONNECTION, and SQL QUERY EXECUTION ora - dbDriver(Oracle) con - dbConnect(ora, rado/only2admin Which database???

[R] constrOptim and function with additional parameters?

2004-07-14 Thread Marlene Mueller
How can I use a function with some additional input parameters in constrOptim? For example, something like fr - function(x,a) { ## Rosenbrock Banana function x1 - x[1] x2 - x[2] a * (x2 - x1 * x1)^2 + (1 - x1)^2 } where the optimum is to be found w.r.t. x. Calling optim(c(-1.2,1), fr,

RE: [R] Smooth monotone estimation on R

2004-07-14 Thread Liaw, Andy
Browsing over the FDA book, I can not find any discussion of monotone smoothing. Andy From: Kjetil Halvorsen Hola! Experimenting a little, package fda seems very much under development, and help pages are definitely not finished. It would certainly help to read the book functional

Re: [R] constrOptim and function with additional parameters?

2004-07-14 Thread Dimitris Rizopoulos
Hi Marlene, from the on-line help file of `constrOptim' you can see that the ... argument is used for passing extra arguments to the `optim' function and not in the function being optimized under constraints. A simple solution would be to pass the value of the extra argument directly to the

Re: [R] constrOptim and function with additional parameters?

2004-07-14 Thread Duncan Murdoch
On Wed, 14 Jul 2004 14:59:01 +0200 (MEST), Marlene Mueller [EMAIL PROTECTED] wrote : How can I use a function with some additional input parameters in constrOptim? For example, something like fr - function(x,a) { ## Rosenbrock Banana function x1 - x[1] x2 - x[2] a * (x2 - x1 * x1)^2 + (1

Re: [R] constrOptim and function with additional parameters?

2004-07-14 Thread Roger D. Peng
Actually, I think this is a bug. Take a look at this part of constrOptim: constrOptim function (theta, f, grad, ui, ci, mu = 1e-04, control = list(), method = if (is.null(grad)) Nelder-Mead else BFGS, outer.iterations = 10 0, outer.eps = 1e-05, ...) { if (!is.null(control$fnscale)

[R] (no subject)

2004-07-14 Thread Herman, David (NIH/NIMH)
Hello, I'm new to R, and I'm having trouble importing a text file (I'm on Windows XP) m - read.table(/Desktop/work/128_L) Error in file(file, r) : unable to open connection In addition: Warning message: cannot open file `/Desktop/work/128_L' do you know why this isn't working?

RE: [R] Smooth monotone estimation on R

2004-07-14 Thread Eliyahu-Oron
Andy, Kjetil, hi, I figured out how to run this, after visiting Jim Ramsay's FDA webpage example on monotone smoothing: http://ego.psych.mcgill.ca/misc/fda/ex-growth-d1.html The code there is Matlab, using very similar names to the R names. First one needs to create a 'blank' B-spline object

Re: [R] (no subject)

2004-07-14 Thread Vincent Goulet
Hi, I but you left out the extension that Windows is hiding from you. Vincent On Wednesday 14 July 2004 10:02, Herman, David (NIH/NIMH) wrote: Hello, I'm new to R, and I'm having trouble importing a text file (I'm on Windows XP) m - read.table(/Desktop/work/128_L) Error in

Re: [R] (no subject)

2004-07-14 Thread Wolski
Hello! It just is not able to find the file as the error message says. You can check if you are specified the right directory path using dir. ?dir dir(/Desktop/work/) I gues you are not. If you are specifying the full path, precede it with the drive name c:/ Eryk *** REPLY

Re: [R] ROracle - fetch gives empty dataframe

2004-07-14 Thread Don MacQueen
This is what I would try next if I were in your situation; I don't know it will help. Try con - dbConnect(ora, rado/[EMAIL PROTECTED]) instead of con - dbConnect(ora, rado/only2admin The default dbname is Sys.getenv(ORACLE_SID), have you checked that? For myself, when I make connections

Re: [R] (no subject)

2004-07-14 Thread Duncan Murdoch
On Wed, 14 Jul 2004 10:11:30 -0400, Vincent Goulet [EMAIL PROTECTED] wrote : Hi, I but you left out the extension that Windows is hiding from you. Yes indeed! Why Windows hides extensions has never made any sense to me. To turn off this seriously broken behaviour, open a folder, then in the

[R] Running the optimization on the subset of parameters

2004-07-14 Thread Victoria Landsman
Dear all, I'd like to find a minimum of (-loglik) function which is a function of k parameters. I'd like to run the minimization algorithm for the different subsets of the parameters and assign the fixed values to the complementary subset. How should I define my (-loglik) function such that it

Re: [R] table lookup n R

2004-07-14 Thread Don MacQueen
There is also the match() function, and the %in% operator, either of which might do the job, depending on your exact details. For example, (1:26)[letters %in% c('x','t','j')] -Don At 2:34 PM +0200 7/13/04, Anne wrote: Hello R helpers! I looked but did not find a table-lookup R-utility. I

Re: [R] constrOptim and function with additional parameters?

2004-07-14 Thread Dimitris Rizopoulos
This is why the `...' argument is passed to `optim' and not to the function being optimized, as it also referred in the help file of `constrOptim' constrOptim function (theta, f, grad, ui, ci, mu = 1e-04, control = list(), method = if (is.null(grad)) Nelder-Mead else BFGS, outer.iterations =

Re: [R] notes on specifying paths and file extensions in Windows; was: (no subject)

2004-07-14 Thread Uwe Ligges
Duncan Murdoch wrote: On Wed, 14 Jul 2004 10:11:30 -0400, Vincent Goulet [EMAIL PROTECTED] wrote : Hi, I but you left out the extension that Windows is hiding from you. Yes indeed! Why Windows hides extensions has never made any sense to me. To turn off this seriously broken behaviour, open a

Re: [R] ROracle - fetch gives empty dataframe

2004-07-14 Thread Rado Bonk
Michael, Yes you are right, I forgot to specify the dbname when posting in R-help list. But not in my R-code, since it is specified in ORACLE_SID variable on Linux. Using the proper syntax I still get an empty data frame: library(ROracle) drv - dbDriver(Oracle) con - dbConnect(drv,

[R] duplicate row importing issue

2004-07-14 Thread Herman, David (NIH/NIMH)
Hello, I'm simply trying to import a .txt file that has a column of about 30,000 pts. I found the file, but I'm getting an error: m - read.table(choose.files()) Error in row.names-.data.frame(`*tmp*`, value = row.names) : duplicate row.names are not allowed Any help with

[R] Tcl/Tk and R

2004-07-14 Thread Talita Leite
Hi!! I'm using the R package tcltk. See the stretch of code below: tbn1 = tclvalue(tkadd(tn,label=Modify Data)) tkpack(tbw1 - .Tk.newwin(tbn1)) tkpack(fr1 - tkframe(tbw1)) tkpack(lb1- tkwidget(fr1,iwidgets::labeledframe)) When I try to execute this I have this error at the last line: Error in

Re: [R] duplicate row importing issue

2004-07-14 Thread Adaikalavan Ramasamy
Try read.table(choose.files(), row.names=NULL). BTW, I think you might be using an older R version because in R-1.9.1, the value for row.names is missing by default in read.table(). args(read.table) function (file, header = FALSE, sep = , quote = \', dec = ., row.names, col.names, as.is =

RE: [R] duplicate row importing issue

2004-07-14 Thread John Fox
Dear David, If there is one fewer variable name in the first row of the data file than fields in the remaining rows, then read.table() will treat the first entry in each row as the row name. Simply add a new first variable (such as name) to the first row, and specify header=TRUE in the call to

Re: [R] SWIG for R

2004-07-14 Thread Duncan Murdoch
On Wed, 14 Jul 2004 08:01:28 -0700, Duncan Temple Lang [EMAIL PROTECTED] wrote : SWIG is an extensible system and so people other than the SWIG developers can indeed provide facilities for supporting R. I am surprised nobody has done it yet and remember asking you whether you had considered

Re: [R] Permutations

2004-07-14 Thread Jordi Altirriba Gutiérrez
Dear R users, First of all, thanks to Rolf, Brad, Robin, Erich, Fernando and Adaikalavan for your time and suggestions. I’ve been testing some algorithms (sorry for the delay, I’m very slow, and I’m a completely beginner in R’s world). First, the Robin algorithm. I think that there is a

Re: [R] SWIG for R

2004-07-14 Thread A.J. Rossini
I like SWIG (well, it facilitates wrappers for Python really well), but it's not perfect. I've not delved into the difficulties in any detail yet, but we've had problems with mixing SWIG and Boost.python for connections with Python code -- and the Boost.python mechanism feels like DTL's RSyour

[R] Ord-Getis O statistics

2004-07-14 Thread Monica Palaseanu-Lovejoy
Hi list, I am wondering if anybody knows if the Ord-Getis O statistics of local spatial autocorrelation in the presence of the global spatial association is implemented in any of the R packages - and of course in which package ;-)). I am not interested in Getis-Ord G statistics, for now.

Re: [R] Permutations

2004-07-14 Thread Gabor Grothendieck
As Erich points out, there is some question as to what the original problem really is but lets assume its as Erich describes. Then, to get a random ordered permutation we just get a random permutation of 12 elements and sort the intra-block elements like this:

Re: [R] SWIG for R

2004-07-14 Thread A.J. Rossini
[EMAIL PROTECTED] (A.J. Rossini) writes: I like SWIG (well, it facilitates wrappers for Python really well), but it's not perfect. I've not delved into the difficulties in any detail yet, but we've had problems with mixing SWIG and Boost.python for connections with Python code -- and the

RE: [R] Is there a statistics that can summarize the correlation for more than two random variables?

2004-07-14 Thread F Duan
Thank you for your reminding. Could you tell me the addresses of STAT-L and ALLSTAT lists? By the way, I found Cronbach's alpha suggested by Prof. Baron might be the one I am looking for though it's not perfect. Frank -Original Message- From: Peter Flom [mailto:[EMAIL PROTECTED] Sent:

Re: [R] constrOptim and function with additional parameters?

2004-07-14 Thread Marlene Mueller
OK, I got the point why the help refers to the arguments of 'optim' only. (Of course, I have read this but did'nt believe it ... ;-)) Thanks to all of you for the clarification and special thanks to Duncan Murdoch for the workaround, which is very close to what I want. I am doing a lot of

RE: [R] duplicate row importing issue

2004-07-14 Thread F Duan
How about you delete the first row (column names) and then use header=FALSE in read.table()? Frank -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Herman, David (NIH/NIMH) Sent: Wednesday, July 14, 2004 11:13 To: '[EMAIL PROTECTED]' Subject: [R]

Re: [R] reading text file in Windows (was no subject)

2004-07-14 Thread Gabor Grothendieck
John Fox jfox at mcmaster.ca writes: You got several useful suggestions for what you may have done wrong. I often find that it's easier to use read.table(file.choose()) and to navigate to the file in the resulting dialog than to type the path to the file. Related to this, you could issue the

Re: [R] Permutations

2004-07-14 Thread Adaikalavan Ramasamy
I think the issue here is in the two keywords - permutations or sample. AFAIK, permutations should return all admissible (by some rule) combinations. If this is a large number, as some have pointed out, then one essentially takes a _sample_ of all admissible combinations. Since you earlier

RE: [R] Is there a statistics that can summarize the correlation for more than two random variables?

2004-07-14 Thread Adaikalavan Ramasamy
http://www.jiscmail.ac.uk/lists/ALLSTAT.html On Wed, 2004-07-14 at 17:47, F Duan wrote: Thank you for your reminding. Could you tell me the addresses of STAT-L and ALLSTAT lists? By the way, I found Cronbach's alpha suggested by Prof. Baron might be the one I am looking for though it's not

[R] Convex smoothing via 'Iterative Convex Minorant' ?

2004-07-14 Thread Martin Maechler
I've been asked, and interested myself: Has anybody implemented the above in R or another S language dialect? We are talking about the algorithms / methodology by Wellner, Groeneboom and Jongbloed, e.g., from the following article @Article{Jongbloed:1998:ICM, author = Geurt Jongbloed,

RE: [R] duplicate row importing issue

2004-07-14 Thread Liaw, Andy
Or just read.table(..., header=FALSE, skip=1) Andy From: F Duan How about you delete the first row (column names) and then use header=FALSE in read.table()? Frank -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Herman, David (NIH/NIMH)

Re: [R] Permutations

2004-07-14 Thread Jordi Altirriba Gutiérrez
Dear Adaikalavan, Now I've send a similar e-mail to Robin and Rolf, therefore I can deduce that my first e-mail was not enough clear (sorry). Therefore, I'm going to try it again with an explanation of why I don't want those permutations: I’ve 12 elements in blocks of 3 elements and I want

Re: [R] Permutations

2004-07-14 Thread Marc Schwartz
On Wed, 2004-07-14 at 08:06, Rolf Turner wrote: In respect of generating random ``restricted'' permutations, it occurred to me as I was driving home last night If one is going to invoke some kind of ``try again if it doesn't work procedure'' then one might as well keep it simple:

[R] simultaneous confidence intervals --- question

2004-07-14 Thread jlamack
Dear all, is there a R function to construct simultaneous confidence intervals for multinomial proportions? Best wishes jl __ Acabe com aquelas janelinhas que pulam na sua tela. AntiPop-up UOL - É grátis!

[R] PCA in R

2004-07-14 Thread Herman, David (NIH/NIMH)
Hello, I'm attempting to run a PCA on an example data set. I ran it just fine, but I don't know how to few the output? I listed what the variable got stored in it, but I don't know how I can get anything else out of it. Are there other ways to view the results? Also, I'm confused

Re: [R] PCA in R

2004-07-14 Thread Jonathan Baron
On 07/14/04 16:05, Herman, David (NIH/NIMH) wrote: Hello, I'm attempting to run a PCA on an example data set. I ran it just fine, but I don't know how to few the output? Take a look at the help file for prcomp, especially the bottom of it. (This is completely general advice for any R

RE: [R] PCA in R

2004-07-14 Thread Liaw, Andy
When all else fails, RTFM; e.g., see ?princomp and read it in its entirety. Then maybe also try running example(princomp). Andy From: Herman, David (NIH/NIMH) Hello, I'm attempting to run a PCA on an example data set. I ran it just fine, but I don't know how to few the

Re: [R] Permutations

2004-07-14 Thread Gabor Grothendieck
Based on your description below and our off-list discussion I gather than the problem is equivalent to sampling ordered permutations in the sense defined by Erich (i.e. permutations which are increasing within blocks) WITHOUT replacement. Actually one of your valid permutations in your example

[R] using mean in by(x,y,mean)

2004-07-14 Thread William Revelle
Dear list friends I fail to understand how to find means for multiple groups using the by() function. Help would be appreciated. Thanks. Bill x - runif(20,0,10) group - rep(c(A,B),10) df -data.frame(x,group) #df#show the data rm(x,group) attach(df) sd(x) # sd is defined mean(x)

Re: [R] using mean in by(x,y,mean)

2004-07-14 Thread Sundar Dorai-Raj
William Revelle wrote: Dear list friends I fail to understand how to find means for multiple groups using the by() function. Help would be appreciated. Thanks. Bill x - runif(20,0,10) group - rep(c(A,B),10) df -data.frame(x,group) #df#show the data rm(x,group) attach(df) sd(x)

RE: [R] using mean in by(x,y,mean)

2004-07-14 Thread Liaw, Andy
From: Sundar Dorai-Raj William Revelle wrote: Dear list friends I fail to understand how to find means for multiple groups using the by() function. Help would be appreciated. Thanks. Bill x - runif(20,0,10) group - rep(c(A,B),10) df -data.frame(x,group) #df

[R] MASS package?

2004-07-14 Thread Johanna Hardin
Did the MASS package disappear? Specifically, I'm looking for a function to find the MCD (robust measure of shape and location) for a multi-dimensional data matrix. Anyone know anything about this? Thanks, Jo Jo Hardin Assistant Professor Department of Mathematics Pomona College

[R] RODBC repeated rows problem

2004-07-14 Thread Kevin Bartz
Hello everyone! I'm having the dreaded repeated rows problem in RODBC. Specifically, when I have a NULL value in a column, odbcFetchRows reads the value not as NULL or NA but as the most recent non-NULL value in the column. If there is no such non-NULL column, odbcFetchRows reads the value as 0.

RE: [R] MASS package?

2004-07-14 Thread Liaw, Andy
Search on the R site ought to show you. cov.rob() is in MASS (part of the `VR' bundle, and should be part of all R distribution). There's also the rrcov package with the covMcd() function. Andy From: Johanna Hardin Did the MASS package disappear? Specifically, I'm looking for a function

Re: [R] MASS package?

2004-07-14 Thread Marc Schwartz
On Wed, 2004-07-14 at 17:05, Johanna Hardin wrote: Did the MASS package disappear? Specifically, I'm looking for a function to find the MCD (robust measure of shape and location) for a multi-dimensional data matrix. Anyone know anything about this? Try: library(MASS) ?cov.rob It's

Re: [R] Permutations

2004-07-14 Thread Gabor Grothendieck
Just in case my last post is wrong in assuming that ordered repesentatives of the 3!^4 intragroup permutations are adequate, the following minor variation of the routine in my last post will provide an unordered representative. Its actually easy to do since sample(12,12), which we already

[R] questions about R

2004-07-14 Thread house-ball
Hi, I try to compute critical value for multivariate normal distribution, and I find the crit(fit, const = c(0, 1), d = 1, cov = 0.95, rdf = 0) which seems to compute critical value. However, I can't compute right critical value for multivariate normal distribution which I want. I don't know

[R] older versions of R (v1.0)

2004-07-14 Thread Kathryn Jones
Hi folks, Does anyone know where I can find downloads for old versions of R, around version 1.0? I found the downloads for unix but not windows. Any help would be greatly appreciated! Thank you, Kathryn __ [EMAIL PROTECTED] mailing list