search for: bmagil

Displaying 14 results from an estimated 14 matches for "bmagil".

Did you mean: bmagill
2001 Jul 12
2
R Applied Regression Text
Is this text publicized? I ran across it doing an internet search. I have never seen any reference to it and it is not on CRAN under documentation. http://www.stat.lsa.umich.edu/~faraway/book/ -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or
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);
2002 Oct 31
3
Changing pch spacing
Hello R-Helpers, plot(x, y, type="b", pch="1") plots x vs. y with both a line and the symbol "1" but how do I change the "spacing" of the symbol being plotted. In other words, I don't want to plot the "1" at every data point, but only at every kth point (things get too cluttered when there are many data points). Thanks in advance! --
2002 Dec 18
3
summary stats including NA's into new dataframe
List, I am trying to extract summary statistics from a data frame with several variables (and NAs) into a dataframe with the columns: Variablename (ie the colnames of original data), mean, stdev, max, min, Valid N, Missing Values. Extracting the statistics is straightforward using stack and aggregate. However, I haven''t succeeded in obtaining the number of Missing Values. I can extract
2001 May 01
3
Factor Analysis
...ht be statistically suspect, replicating results from other studies suggests to me that this is exactly what was done). Brett A. Magill, Associate Program Administration and Evaluation Health, Safety, and Community Services American Red Cross Phone: (703) 206-7731 Fax: (703) 206-7673 E-mail: bmagill at usa.redcross.org -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To:...
2003 Jul 21
5
how to test whether two slopes are sign. different?
Not really r-specific: Z = (b1 - b2) / SQRT ( SEb1^2 + SEb2^2) -------Original Message------- From: Gijsbert Stoet <stoet at volition.wustl.edu> Sent: 07/20/03 09:51 PM To: r-help at stat.math.ethz.ch Subject: [R] how to test whether two slopes are sign. different? > > Hi, suppose I do want to test whether the slopes (e.g. determined with lsfit) of two different population are
2003 Jan 03
4
factor analysis (pca): how to get the 'communalities'?
Dear expe-R-ts, I try some test data for a factorAnalysis (resp. pca) in the sense of Prof. Ripley's MASS ? 11.1, p. 330 ff., just to prepare myself for an analysis of my own empirical data using R (instead of SPSS). 1. the data. ## The test data is (from the book of Backhaus et al.: Multivariate ## Analysemethoden. Springer 2000 [9th ed.], p. 300 ff):
2002 Jun 28
4
R for simple stats
Hi everyone, I'm taking a course in statistics as part of my doctoral program in education at the U. of Minnesota, USA. I found R via Rpy, a python module that makes it possible to use R from python scripts. The instructor refers to SPSS a lot and that seems to be the standard stats tool around here. But being more of a Unix guy and not intimidated by programming, I'd like to see if I
2003 Mar 31
2
point-biserial correlation
Dear list, has anyone written a package/function in R for computing a point- biserial resp. biserial correlation? Thanks in advance Bernd
2003 Jan 04
0
factor analysis (pca): how to get the 'communal
On 4 Jan 2003 at 12:51, Wolfgang Lindner wrote: > Please excuse me, if the following questions are *too* off-topic, but I found it > interesting. In inspecting your code I came across an R feature, I could not > find in the online manuals: > > Q1. Looking at the left-handside in your function def: > > "cov.cor" <- function ( covmat ) { >
2003 Mar 10
1
DLL error after update.packages
When updataing packages from CRAN, I got the following error message: updating HTML package descriptions Warning message: DLL attempted to change FPU control word from 8001f to 9001f Everything seems fine, the packages updated, just wondering what this was. R 1.6.2 on Windows 98. Details on the packages dowloaded are below. ________________________________________________ update.packages()
2002 Aug 02
1
avoiding "for()" loops: a question?
I have read in several places that one should attempt to avoid for loops whenever possible. In this spirit, I was playing with some code that I have written to improve its efficiency and elegance. The following iteratively drops a column from a data frame and applies a function to the reminaing columns. I replaced this for loop: for (y in 1:dim(x)[2]) my.function (x[,-y]) with this:
2003 May 01
3
Test statistic for Spearman correlation
In the ouput below, what is the "S" statistic (S = 96) that is used for Spearman? I don't have easy access to the books cited on the help page. Other texts and web sources that I have found use t or z as a test for Spearman, perhaps inappropriately. Can anyone tell me how S is computed or refer to a web resource? I see from the code for that: q <- as.integer((n^3 - n) * (1
2002 Dec 12
1
Read FWF, problem and solution?
Running R 1.6.1 Linux Slackware 8.1 233MHZ AMD-K6 96MB RAM Using read.fwf, I tried to open a fixed-width file that of about 4 MB residing in the working directory, using the command below: dat<-read.fwf("sc01aai.dat", widths=fields$length) where fields$lengths is a vector of column widths, 28 to be exact. The data are a mix of character, text, and factor variables. R started