Re: [R] Matrix of dummy variables from a factor

2005-12-06 Thread John Fox
Dear Charles, Try model.matrix(~f)[,-1]. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From

Re: [R] is it possible to use R to edit an EXCEL spreadsheet so I can create a searchable EXCEL database of R packages?

2005-12-05 Thread John Fox
- readLines(c:/temp/Packages.txt) packages - gsub(^\ *, , gsub(\ *$, , packages)) packages - matrix(packages, ncol=3, byrow=TRUE) write.table(packages[,1:2], c:/temp/Packages2.txt, sep=,, row.names=FALSE, col.names=FALSE) I hope this helps, John John Fox

[R] FW: Error in structural equation model - The model hasnegativedegrees of freedom

2005-12-04 Thread John Fox
Dear R-help list members, I forgot to copy my reply to the r-help list. Here's most of it. John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox

Re: [R] Error in structural equation model - The model has negativedegrees of freedom

2005-12-01 Thread John Fox
this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

Re: [R] Tiger Mac stalls running Rcmdr program

2005-11-25 Thread John Fox
structural-equation modeling or meta-analysis. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From

Re: [R] type III sums of squares in R

2005-11-24 Thread John Fox
matrix. I should probably elaborate the warning about Type-III tests in the help page for Anova(), but perhaps it would help to know that the issue is discussed at greater length in the book with which the car package is associated. I hope this helps, John John

Re: [R] residuals in logistic regression model

2005-11-24 Thread John Fox
Dear Urania, The residuals method for glm objects can compute several kinds of residuals; the default is deviance residuals. See ?residuals.glm for details and references. I hope this helps. John John Fox Department of Sociology McMaster University Hamilton

Re: [R] residuals in logistic regression model

2005-11-24 Thread John Fox
Dear Urania, -Original Message- From: Urania Sun [mailto:[EMAIL PROTECTED] Sent: Thursday, November 24, 2005 8:52 PM To: John Fox Cc: r-help@stat.math.ethz.ch Subject: Re: [R] residuals in logistic regression model Thanks, Professor. But is it ok to write residuals

Re: [R] _simple_ introduction to bayesian methods?

2005-11-22 Thread John Fox
Dear Joshua, You might take a look at Lancaster, An Introduction to Modern Bayesian Econometrics. I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox

Re: [R] graphing help

2005-11-22 Thread John Fox
Dear Anthony, You can use xlim in plot() to reverse the x-axis. For example, x - 1:10 y - x plot(x, y, xlim=rev(range(x))) (I'm pretty sure, by the way, that this question has been asked before.) I hope this helps, John John Fox Department of Sociology

Re: [R] Autoloading R Commander

2005-11-19 Thread John Fox
R starts, this could go in Rprofile.site in R's etc subdirectory. For more detail, see ?Startup, as others have suggested. local({ old - getOption(defaultPackages) options(defaultPackages = c(old, Rcmdr)) }) I hope this helps, John John Fox Department

Re: [R] Autoloading R Commander

2005-11-19 Thread John Fox
Dear Stephen, As a brief addendum, this information (and other information) is in the Rcmdr installation notes, at http://socserv.socsci.mcmaster.ca/jfox/Misc/Rcmdr/installation-notes.html. Sorry I forgot that when I posted my original answer. John John Fox

Re: [R] loess: choose span to minimize AIC?

2005-11-17 Thread John Fox
=result$minimum, criterion=result$objective) } A little experimentation suggests that aicc1 doesn't seem to behave reasonably. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http

Re: [R] Interpretation of output from glm

2005-11-10 Thread John Fox
, and Related Methods. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED

Re: [R] basic mac question

2005-11-09 Thread John Fox
John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of George

Re: [R] Need advice about models with ordinal input variables

2005-11-08 Thread John Fox
Dear Paul, I'll try to answer these question briefly. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Johnson Sent: Tuesday, November 08, 2005 2:42 PM To: r-help@stat.math.ethz.ch Subject: [R] Need advice about models with ordinal input

Re: [R] Interpretation of output from glm

2005-11-08 Thread John Fox
Dear Pedro, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Pedro de Barros Sent: Tuesday, November 08, 2005 9:47 AM To: r-help@stat.math.ethz.ch Subject: [R] Interpretation of output from glm Importance: High I am fitting a logistic model to

Re: [R] A Quick and (Very) Dirty Intro to Stats in R

2005-11-08 Thread John Fox
Dear Jarrett, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jarrett Byrnes Sent: Tuesday, November 08, 2005 6:41 PM To: R-help@stat.math.ethz.ch Subject: [R] A Quick and (Very) Dirty Intro to Stats in R . . . Most importantly, there are

Re: [R] OLS variables

2005-11-07 Thread John Fox
John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: Prof Brian Ripley [mailto:[EMAIL PROTECTED] Sent: Monday, November 07

Re: [R] OLS variables

2005-11-07 Thread John Fox
Dear Brian, I like the idea of providing support for raw polynomials in poly() and polym(), if only for pedagogical reasons. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http

Re: [R] OLS variables

2005-11-06 Thread John Fox
, however, if not quite 2^20. The introductory manual that comes with R has information on model formulas in Section 11. I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http

Re: [R] cox models

2005-11-06 Thread John Fox
level. To see the contrasts, enter the command contrasts(igr1$class). A bit more information on contrasts is in Section 11.1.1 of the introductory manual that comes with R. I hope this helps, John John Fox Department of Sociology McMaster University Hamilton

Re: [R] (no subject)

2005-11-05 Thread John Fox
Dear Erez, How about C - A + B ? Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL

Re: [R] function effect and standard error

2005-11-01 Thread John Fox
student Biology Departement Université de Sherbrooke 2500 boul. de l'Université Sherbrooke, Québec J1K 2R1 CANADA Tél: 1-819-821-8000 poste 2059 Fax: 1-819-821-8049 [EMAIL PROTECTED] [[alternative HTML version deleted]] John Fox Department

Re: [R] GLM

2005-10-31 Thread John Fox
)) sapply(summaries, function(x) x$AIC) I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message

Re: [R] Problem with llines in lattice

2005-10-30 Thread John Fox
Of Deepayan Sarkar Sent: Saturday, October 29, 2005 6:01 PM To: John Fox Cc: r-help@stat.math.ethz.ch Subject: Re: [R] Problem with llines in lattice On 10/29/05, John Fox [EMAIL PROTECTED] wrote: Dear r-help list members, I'm experiencing problems getting type=b (or o or c) to work

[R] Problem with llines in lattice

2005-10-29 Thread John Fox
() and lplot.xy(), which llines() calls, and don't see the source of the problem. I'm using R 2.2.0 under Windows XP. I'm pretty sure that this used to work, but I got the same problem in R 2.1.1 when I tried it there. Any help would be appreciated. Thanks, John John Fox

Re: [R] lm type of sums of squares

2005-10-28 Thread John Fox
__ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html John Fox Department of Sociology McMaster University

Re: [R] Help: partial.cor significance test

2005-10-26 Thread John Fox
would want to do this, however, is another matter. What would one do with a matrix of 2-sided p-values? Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox

Re: [R] making an inicator variable

2005-10-25 Thread John Fox
Section 11 of the Introduction to R manual that comes with R). It's hard to give really good advice without knowing more about the context. I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525

Re: [R] String manipulation

2005-10-20 Thread John Fox
John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Luis Ridao Cruz Sent: Thursday

Re: [R] spliting an integer

2005-10-20 Thread John Fox
Dear Sundar and Dimitri, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sundar Dorai-Raj Sent: Thursday, October 20, 2005 3:50 PM To: Dimitri Szerman Cc: R-Help Subject: Re: [R] spliting an integer Dimitri Szerman wrote: Hi there,

Re: [R] how to import such data to R?

2005-10-17 Thread John Fox
mail addres is [EMAIL PROTECTED] Blog:http://sociology.yculblog.com John Fox Department of Sociology McMaster University Hamilton, Ontario, Canada http://socserv.mcmaster.ca/jfox/ __ R-help@stat.math.ethz.ch mailing list

Re: [R] asking the user for data

2005-10-16 Thread John Fox
, as would as.numeric(readline(paste(Please enter the z value for , x, : , sep=))). I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox

Re: [R] SEM with dichotomous indicators

2005-10-16 Thread John Fox
John Fox Department of Sociology McMaster University Hamilton, Ontario, Canada http://socserv.mcmaster.ca/jfox/ __ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R

Re: [R] zip package

2005-10-14 Thread John Fox
tells you. (3) You don't seem to be using the destdir argument correctly; you can omit it. Why not avoid all this and just use the R for Windows menus: Packages - Install package(s) from local zip files? I hope this helps, John John Fox Department of Sociology

Re: [R] R/S-Plus equivalent to Genstat predict: predictions over averages of covariates

2005-10-06 Thread John Fox
Dear Peter, See the effects package, described in http://www.jstatsoft.org/counter.php?id=75url=v08/i15/effect-displays-revi sed.pdf. I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525

Re: [R] data.frame error using sem package

2005-10-06 Thread John Fox
the sem examples for details and the paper at http://socserv.socsci.mcmaster.ca/jfox/sem-package.pdf. I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox

Re: [R] Rcmdr and scatter3d

2005-10-05 Thread John Fox
by groups. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: ecatchpole [mailto:[EMAIL PROTECTED

Re: [R] testing non-linear component in mgcv:gam

2005-10-05 Thread John Fox
Dear Denis, Take a closer look at the anova table: The models provide identical fits to the data. The differences in degrees of freedom and deviance between the two models are essentially zero, 5.5554e-10 and 2.353e-11 respectively. I hope this helps, John John

Re: [R] transparent surface in rgl

2005-10-05 Thread John Fox
, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

Re: [R] testing non-linear component in mgcv:gam

2005-10-05 Thread John Fox
be dependent upon the scale of the response. John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL

Re: [R] testing non-linear component in mgcv:gam

2005-10-05 Thread John Fox
to the package author. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: Denis Chabot [mailto:[EMAIL

Re: [R] Rcmdr and scatter3d

2005-10-04 Thread John Fox
)) } John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

Re: [R] plot question when type = b and pch is a vector

2005-10-02 Thread John Fox
John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

Re: [R] generalized linear model for multinomial data?

2005-10-02 Thread John Fox
Dear Hongyu, See multinom() in the nnet package, associated with Venables and Ripley's Modern Applied Statistics with S. John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox

Re: [R] Are least-squares means useful or appropriate?

2005-09-24 Thread John Fox
, that is for terms merged with their lower-order relatives. These, for example, are unaffected by contrast coding. How to define reasonable quasi-variances in this context has been puzzling me for a while. Regards, John John Fox Department of Sociology McMaster University

Re: [R] text editor TinR?

2005-09-19 Thread John Fox
Dear Mihai, It's Tinn-R (with two n's), at http://www.sciviews.org/Tinn-R/. John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox

Re: [R] Rcommander and simple chisquare

2005-09-15 Thread John Fox
will be calculated. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [R] Rcommander and simple chisquare

2005-09-15 Thread John Fox
will be calculated. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [R] Rcommander and simple chisquare

2005-09-15 Thread John Fox
directly are the hypothesized probabilities. I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message

Re: [R] Collineariy Diagnostics

2005-09-13 Thread John Fox
Dear Sundar and Antoine, In addition, the vif function in the car package will calculate generalized variance inflation factors. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http

Re: [R] is library loaded

2005-09-13 Thread John Fox
Dear Omar, The following function tests whether a package is in the search path (with the package name given in quotes): packageLoaded - function(name) 0 != length(grep(paste(^package:, name, $, sep=), search())) I hope this helps, John John Fox Department

Re: [R] is library loaded

2005-09-13 Thread John Fox
() both loaded a package (with or without a namespace) and attached it to the search path, but I must admit that I'm easily confused about these distinctions. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525

[R] [R-pkgs] Internationalized version of the Rcmdr package

2005-09-09 Thread John Fox
they are completed. If you're interested in translating the Rcmdr into another language, please contact me. As before, bug reports, suggestions, and other feedback are appreciated. John John Fox Department of Sociology McMaster University Hamilton, Ontario

Re: [R] Plotting an ellipse in 3D

2005-09-09 Thread John Fox
) } } if (model.summary) return(summaries) else return(invisible(NULL)) } John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original

Re: [R] tcltk, X11 protocol error: Bug?

2005-09-08 Thread John Fox
the warnings. The way I handle the problem in the Rcmdr package is simply to intercept the warnings. I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox

Re: [R] Rcmdr extensions

2005-08-29 Thread John Fox
by using the function doItAndPrint(). I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message

Re: [R] Matrix oriented computing

2005-08-26 Thread John Fox
) system.time(for (i in 1:length(df)) mat[i,] - qchisq(x, df[i])) [1] 0.09 0.00 0.10 NA NA Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox

Re: [R] Manually Calculating Odds from POLR Model

2005-08-15 Thread John Fox
is distributed with R. More detailed explanations are in texts such as Venables and Ripley, Modern Applied Statistics With S, and my own, An R and S-PLUS Companion to Applied Regression. I hope this helps, John John Fox Department of Sociology McMaster University

Re: [R] path analysis

2005-08-14 Thread John Fox
John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Manel Salamero Sent

Re: [R] path analysis

2005-08-14 Thread John Fox
Dear Manuel and list, I see that I wrote point-biserial when I meant biserial. Sorry, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox

Re: [R] path analysis

2005-08-13 Thread John Fox
Dear Manel, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of SALAMERO BARO, MANUEL Sent: Saturday, August 13, 2005 2:02 PM To: r-help@stat.math.ethz.ch Subject: [R] path analysis Someone knows if it is possible to perform a path analysis with

Re: [R] Issues with tcltk for Tiger Mac OSX

2005-08-12 Thread John Fox
John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bernard Leong

Re: [R] Manually Calculating Odds from POLR Model

2005-08-12 Thread John Fox
John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tate

Re: [R] tcltk programming guide

2005-08-11 Thread John Fox
on the tcltk package. I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL

Re: [R] partial SS for anova

2005-07-31 Thread John Fox
Dear Natalia, See the Anova() function in the car package. Also see the warning in ?Anova about Type III sums of squares. I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http

Re: [R] Unexpected behavior in recode{car}

2005-07-28 Thread John Fox
- recode(nn, 2='Num2'; 4='Num4', as.factor=TRUE) Thanks for bringing this bug to my attention. John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox

Re: [R] logistic regression: categorical value, and multinomial

2005-07-27 Thread John Fox
Dear Ed, See ?glm for fitting binomial logit models, and ?multinom (in the nnet package) for multinomial logit models. Neither function will handle a character (text) variable as the response, but you could easily convert the variable to a factor. John John Fox

Re: [R] setting elements to NA across an array

2005-07-27 Thread John Fox
Dear Dr Carbon, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dr Carbon Sent: Wednesday, July 27, 2005 12:19 PM To: [EMAIL PROTECTED] Subject: [R] setting elements to NA across an array Please excuse what is obviously a trivial matter... I

Re: [R] setting elements to NA across an array

2005-07-27 Thread John Fox
), function(x) any(is.na(x))), dim(foo))] - NA Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message

Re: [R] grep help needed

2005-07-26 Thread John Fox
Dear Denis, I don't believe that anyone fielded your question -- my apologies if I missed a response. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Denis Chabot Sent: Monday, July 25, 2005 9:46 PM To: R list Subject: [R] grep help needed Hi,

Re: [R] sciviews installation

2005-07-20 Thread John Fox
John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Philippe

Re: [R] 3D ellipsoid confidence region

2005-06-28 Thread John Fox
__ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html John Fox Department of Sociology McMaster University

Re: [R] How to save changed options in Rcmdr

2005-06-23 Thread John Fox
). For more information on R initialization, see ?Startup. I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original

Re: [R] Another question about Rcmdr

2005-06-23 Thread John Fox
has used the Rcmdr under R 2.1.1 on a Linux system and can report success or failure. I'm sorry that I can't be of more help, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca

Re: [R] test for equality of two data sets withmultidimensional variables

2005-06-21 Thread John Fox
Dear Petr and Shengzhe, Also see ?manova. John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL

Re: [R] Factanal loadings as large as 1.2 with promax -- how unusual?

2005-06-20 Thread John Fox
suggest that you could get by with fewer factors. I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message

Re: [R] Problem with multinom ?

2005-06-11 Thread John Fox
hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [R] Problem with multinom ?

2005-06-11 Thread John Fox
Dear Marc, -Original Message- From: Marc Girondot [mailto:[EMAIL PROTECTED] Sent: Saturday, June 11, 2005 2:16 PM To: John Fox Cc: [EMAIL PROTECTED] Subject: RE: [R] Problem with multinom ? Dear Marc, I get the same results -- same coefficients, standard errors, and fitted

Re: [R] problem with polr ?

2005-06-10 Thread John Fox
Dear Marc, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marc Girondot Sent: Friday, June 10, 2005 3:44 PM To: r-help@stat.math.ethz.ch Subject: [R] problem with polr ? I want to fit a multinomial model with logit link. For example let this

RE: [R] Forecasting with macroeconomic structural equations models?

2005-06-09 Thread John Fox
of the model. To do so, you'll need forecasts for the exogenous variables in the system. I hope that this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox

RE: [R] chisq.test and anova problems

2005-06-06 Thread John Fox
Dear Richard, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Richard Mendes Sent: Monday, June 06, 2005 8:44 AM To: r-help@stat.math.ethz.ch Subject: [R] chisq.test and anova problems we just started to use R and having some problems that no

RE: [R] R GUI for Linux?

2005-05-30 Thread John Fox
Dear Charles, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of White, Charles E WRAIR-Wash DC Sent: Monday, May 30, 2005 10:52 AM To: r-help@stat.math.ethz.ch Cc: [EMAIL PROTECTED] Subject: [R] R GUI for Linux? . . . Rcmdr: There are all

RE: [R] Errors in Variables

2005-05-29 Thread John Fox
. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

RE: [R] text-function: adding text in an x,y-plot

2005-05-29 Thread John Fox
going on. Instead you could specify labels=lab$V1 in the text() command. But why put the row names in a data frame in the first place; why not simply use labels=rownames(out.pca)? I hope this helps, John John Fox Department of Sociology McMaster University Hamilton

RE: [R] Errors in Variables

2005-05-29 Thread John Fox
Dear Spencer, -Original Message- From: Spencer Graves [mailto:[EMAIL PROTECTED] Sent: Sunday, May 29, 2005 4:13 PM To: John Fox Cc: r-help@stat.math.ethz.ch; 'Jacob van Wyk'; 'Eric-Olivier Le Bigot' Subject: Re: [R] Errors in Variables Hi, John: Thanks

RE: [R] precision problem

2005-05-25 Thread John Fox
John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Omar Lakkis Sent

RE: [R] precision problem

2005-05-25 Thread John Fox
, but of course without abs(). Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED

RE: [R] colors and palettes and things...

2005-05-23 Thread John Fox
directory. I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED

RE: [R] installing R and Rcmdr onMacOS 10.3.9

2005-05-23 Thread John Fox
on a Mac is willing to prepare notes about how to get it installed and working, I'd gladly post them on my web site. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox

RE: [R] R annoyances

2005-05-19 Thread John Fox
Dear Uwe, I've often wondered why T and F aren't reserved words in R as TRUE and FALSE are. Perhaps there's some use of T and F as variables, but that seems ill-advised. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada

RE: [R] R annoyances

2005-05-19 Thread John Fox
for TRUE and FALSE, then why provide standard global variables by these names? On the other hand, if providing T and F is considered desirable (e.g., for S-PLUS compatibility), then why not make them reserved names? Regards, John John Fox Department of Sociology

RE: [R] Difference between difference of means

2005-05-04 Thread John Fox
Dear Peter, This looks like a two-way ANOVA, with product as one factor and condition as the other. The test that you describe is for the interaction between product and condition. I hope this helps, John John Fox Department of Sociology McMaster University

RE: [R] Anova - adjusted or sequential sums of squares?

2005-04-20 Thread John Fox
of squares, be careful to use a contrast type (such as contr.sum) that produces an orthogonal row basis for the terms in the model. I hope this helps, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http

RE: [R] Pearson corelation and p-value for matrix

2005-04-18 Thread John Fox
John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

[R] Discrepancy between gam from gam package and gam in S-PLUS

2005-04-18 Thread John Fox
(income, span = 0.6) 1 3 7.018995 0.0002517358 - snip I suppose that one of these must be in error. Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http

RE: [R] Pearson corelation and p-value for matrix

2005-04-18 Thread John Fox
Dear Andy, Very nice! (My point was that if this is a one-time thing, for Dren to puzzle over it is probably more time-consuming than simply doing it inefficiently.) Regards, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S

RE: [R] Pearson corelation and p-value for matrix

2005-04-16 Thread John Fox
, for example. Thanks, John John Fox Department of Sociology McMaster University Hamilton, Ontario Canada L8S 4M4 905-525-9140x23604 http://socserv.mcmaster.ca/jfox -Original Message- From: Liaw, Andy [mailto:[EMAIL PROTECTED

RE: [R] Pearson corelation and p-value for matrix

2005-04-16 Thread John Fox
Dear Mark, -Original Message- From: Marc Schwartz [mailto:[EMAIL PROTECTED] Sent: Friday, April 15, 2005 9:41 PM To: John Fox Cc: 'R-Help'; 'Dren Scott' Subject: RE: [R] Pearson corelation and p-value for matrix John, Interesting test. Thanks for pointing that out. You

<    1   2   3   4   5   6   7   >