search for: johns2326

Displaying 3 results from an estimated 3 matches for "johns2326".

2002 Sep 11
1
R 1.5.0 on Jaguar?
It seems that someone was having trouble compiling R under Mac OS X 10.2, but I'm wondering if anyone is running the version available from http://www.apple.com/downloads/macosx/math_science/rformacintosh.html under OS X 10.2. This is important because I'm about to take delivery of a new Power Mac running 10.2! John Shonder Oak Ridge National Laboratory
2003 Jul 12
1
Problem with library "car"
I am using the Unix version of R (version 1.7.0), installed via fink on a G4 Macintosh. I recently upgraded from version 1.6.0 and found that the "car" library now has a problem: ---Begin transcript--- >library(car) Attaching package 'car': The following object(s) are masked from package:base : dfbeta dfbeta.lm dfbetas dfbetas.lm hatvalues hatvalues.lm
2003 Jan 16
2
Problem using outer()
Here is a problem I am having. I would sincerely appreciate any help/advice from the experts who read this list. I have contrived a simple example, but it gives the same result I encountered in a more complicated application. Given data frame u: x y 31 19 32 18 33 17 34 16 35 15 36 14 37 13 I define the function f as follows: f <- function(a,b) sum(u$x - a) + sum(u$y - b) One might think