similar to: R Applied Regression Text

Displaying 20 results from an estimated 2000 matches similar to: "R Applied Regression Text"

2002 Feb 08
2
Managing Data
Hello everyone, Can someone point me to some resources on managing data in R and/or S-plus? I have started using R more and more often in my work and I really like it. But, managing data is very different in R and S-Plus than in other packages that I am accustomed to. I know that it is an option to use different workspaces for different projects or to store all objects as source and read them
2003 Jan 14
3
PLS regression?
Hi all, I would like to do some QSAR analysis (quantitative structure activity relationship). I need to use some Partial Least Squares (PLS) regression, but I have not seen this option on the R-project. Is it possible to do this kind of regression on R? thank you in advance best regards, olivier [[alternate HTML version deleted]]
2002 Feb 25
1
Managing Data [Summary]
A while ago I asked about data management approaches in R. I was asked by several people to post a summary of the responses and alas I am just getting around to doing it. I received several comments, both on and off list. Below is a compilation of these responses. Hope this is as helpful to others as it was to me. Best, Brett 1. Frank Harrell recommended a section, "Operating in
2004 Oct 28
1
: a package problem
Dear R- users and Helpers: I downloaded the package from www.stat.lsa.umich.edu/~faraway/book and installed it from local zip file. It looked fine. But when I input library(faraway) it showed " Error in library(faraway) : 'faraway' is not a valid package --- installed < 2.0.0? What I used is R 2.0.0 version now. What should I do? Thank you very much. Xin
2002 Nov 02
2
Partial Least Squares
Hi everybody! Is there any package or functions to make Partial Least Squares analysis with R? Thanks a lot Luis -------------------------------------------- sapo.pt/kitadsl -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or
2001 Mar 26
1
Item Analysis and Cronbach's Alpha (Code Attached)
A short function I wrote for the purpose of evaluating scales made up of a number of questionnaire items. It provides Cronbach's Alpha, both unstandardized and based on standardized items. It also provides item statistics which include item-total correlations (corrected) and item-removed alpha. Thought some of you might find it useful. I would also appreciate any programming tips or
2006 Aug 23
1
covariance matrix of predictions
Hi ! I am trying to get at the covariance of the predictions of a linear model. Suppose the we have: > x<-runif(1000) > y<-2 + 25x*x +rnorm(1000) > lm1 <-lm(y~x, data = data.frame(y = y, x=x)) > x.pred <-runif(10) > y.hat <- predict(lm1, newdata = data.frame(x=x.pred)) I was wondering how to get an estimate of the covariance of y.hat which would be a 10 x 10
2006 Sep 20
8
Statitics Textbook - any recommendation?
I would like to buy a basic statistics book (experimental design, sampling, ANOVA, regression, etc.) with examples in R. Or download it in PDF or html format. I went to the CRAN contributed documentation, but there were only R textbooks, that is, textbooks where R is the focus, not the statistics. And I would like to find the opposite. Other text I am trying to find is multivariate data
2004 Feb 15
4
father and son heights
Faraway's book titled "Practical Regression and Anova using R", with full text available online at: http://cran.r-project.org/doc/contrib/Faraway-PRA.pdf refers to a data set, stat500, which compares midterm and final grades. It can be used to illustrate similar concepts. A google search for faraway.zip will locate the actual data. --- Date: Sun, 15 Feb 2004 10:37:08 -0800
2000 Mar 13
1
Install R1.0.0 (PR#485)
Hello, I tried to compile and install R. After I ran make 2>&1 | tee log ., I got the following error: making system.d from system.c system.c:37: readline/readline.h: No such file or directory make[3]: *** [system.d] Error 1 make[3]: Leaving directory `/afs/lsa.umich.edu/group/admin/software/build/R/R-1. 0.0/src/unix' make[2]: *** [R] Error 2 make[2]: Leaving directory
2006 May 08
3
(g)lm ordinal or scaled values?
There is a difference in the p- value from 0.000 and 0.012 when I am using SPSS. 0.000 when I am using the independent variable as scaled 0.012 if I am using the variable as ordinal. The independent variable is ordinal but it seems that R is using the variable as an scaled, because the P- Value is computed with 4.66e-06 so I am not sure which description I am misunderstanding: SPSS;:
2008 Nov 12
1
Generating Data for Simulation
Are there any R packages that could be used to generate random data given a set of parameters? Or, if not a package, how would one generate such data? What I would like to do is simulate some sample data for a regression model given a set of population covariances and distribution parameters to be used in a MC simulation. Thanks for any tips. [[alternative HTML version deleted]]
2012 Jan 03
3
An R interface to Model Building
Hello all, To anyone who is interested, I'm trying to learn a bit more about developing applications in R with user interfaces. I've been playing around with gWidgets to develop a model building interface. I'd appreciate any comments, suggestions, or guidance on how to better structure my R code and organize the programming task. In addition, any suggestions for features and
2003 Apr 15
1
Recursion Limits?
See the code below. First, what are recursion limits in R. The function is stopping after 25 iterations for me. Is this general, or localized? Can recursion limits be changed? Second, which is generally more efficient, recursion or looping over a function? R 1.6.1 Windows 98 ----------------------------------------------------------- recurse<-function (n) { ifelse(n<50, {print(n);
2000 Jun 19
1
missing include in pnorm.c (PR#575)
Full_Name: Julian Faraway Version: R-Release (June 15) OS: Linux (redhat) Submission from: (NULL) (141.211.66.172) R fails to compile on the current released version. Some constants are undefined in pnorm.c. It appears that adding #include "nmath.h" to pnorm.c solves this problem. -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list
2002 Jan 17
1
Using S-Plus Documentation with R
Insightful has some nice docs available for download that are s-plus command line guides to statistics. There are two versions, one for S-plus 2000 and one for S-plus 6.0. With regard to syntax, is one a closer match to R than the other? Are they based on the same S engines? Does that matter? I know there will be differences in any case, I am just trying to decide wich version I want to
2006 Apr 19
1
R-squared for MARS models
Hi, is there an R function which can compute the R-squared for a mars model fitted using the mda package? many thanks in advance best regards Marco Girardello
2001 May 01
3
Factor Analysis
Thanks to Brian Ripley for the time and effort put into developing the factanal package for R. I have found it very useful. However, in trying to replicate some results from previous research, I have run into the need for a couple of extensions and was wondering if they might find their way into future implementations. 1. Though maximum likelihood estimates might be more rigorous and
2011 May 20
1
How to do covariate adjustment in R
Hi, I have a question about how to do covariate adjustment. I have two sets of 'gene expression' data. They are from two different tissue types, 'liver' and 'brain', respectively. The purpose of my analysis is to compare the pattern of the whole genome 'gene expression' between the two tissue types. I have 'age' and 'sex' as covariates. Since
2005 Sep 06
5
Good Polycom Dealer?
Could any of you provide me information on a good Polycom phone dealers to utilize. One who provides firmwares ..etc Thank you! Kenny ______________________________________________________ Click here to donate to the Hurricane Katrina relief effort. http://store.yahoo.com/redcross-donate3/