search for: gardfjel

Displaying 16 results from an estimated 16 matches for "gardfjel".

Did you mean: gardfjell
2006 Jun 08
2
Plotting female and male signs
...> text(locator(1),"\u00FF") or > text(locator(1),"\u00E6") and also without preceeding 00 > text(locator(1),"\uE6") Can someone give me a hint? I'm using a Swedish locale on WindowsXP and my R version is 2.3.1 Patched (2006-06-04 r38279) Thanks, Hans Gardfjell -- ********************************* Hans Gardfjell Ecology and Environmental Science Ume? University 90187 Ume?, Sweden email: hans.gardfjell at emg.umu.se phone: +46 907865267 mobile: +46 705984464
2001 Oct 25
2
How to save boot objects?
...to run several boot commands from within a battchfile on a remote server. "Dumping" them and later pick them up and calculate CI etc. Why is dump/source behaving like this on boot objects? Does anyone of you have a better suggestion than using dump for saving boot objects? Thanks, Hans Gardfjell Ume? University -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- 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: r-h...
2006 May 23
2
Environment problems
...s, I know I can manually change the environment back to .GlobalEnv, but is this the way it supposed to work? This example is done in > R.Version()$version.string [1] "Version 2.3.0 Patched (2006-04-25 r37924)" on WindowsXP Cheers, Hans -- ********************************* Hans Gardfjell Ecology and Environmental Science Ume? University 90187 Ume?, Sweden email: hans.gardfjell at emg.umu.se phone: +46 907865267 mobile: +46 705984464
2002 Jul 29
2
Bug or feature in xyplot?
...but when I try it with xyplot in the lattice package it fails. xyplot(c(1,1,2,2)~c(1,2,1,2)|c("A","A","B","B"),col=c(1,2,3,4),pch=c(1,2,3,4 )) Do I have to specify colors and symbol types differently with lattice functions or is this a bug? Thanks, Hans Gardfjell Ecology and Environmental Science Ume? University, Sweden -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the &quot...
2003 Aug 20
1
Filled triangles in lattice graphics?
...triangle pointing upwards by specifying pch=17 in xyplot or lpoints, but how do I get a filled triangle that points downwards? In the standard plot function it's possible to use plot(x,y,pch=25,bg="black"), but bg= doesn't seem to work with lattice and lpoints. Thanks, Hans Gardfjell Ecology and Environmental Science Ume? University, Sweden
2002 Nov 21
1
Distance between points and a polygon?
...R. So here's my question anyway... Does anyone of you know about any R-functions/code that calculates the distance between a number points and a polygon or polyline? I have looked thru the different libraries that deals with spatial statistics but haven't found anything. Thanks, Hans Gardfjell Ume? University, Sweden -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- 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 !) T...
2003 Apr 18
1
Problem with eigen() and LAPACK
...K=TRUE) $values [1] 1.3458236 -0.4458236 $vectors [,1] [,2] [1,] -1.1436890 -0.9760443 [2,] -0.7696018 0.2175718 My R-version [1] "R version 1.7.0, 2003-04-16", running on Debian PC. Anyone who has a clue why LAPACK refuses to solve the eigenvalues? Thanks, Hans Gardfjell EG, Ume? Universitet, Sweden
2006 Feb 11
2
how do I "relate" tables in R?
Hi all, I'm new to the list...pretty new at learning to code in R... Is there a way to relate 2 different arrays in R? Hypothetical example: data1 ID z 1 100 2 250 3 75 4 12 5 89 data2 ID z 1 1 1 1 2 3 4 3 4 5 5 5 etc. Goal is to fill column z in data2 with appropriate z-values from data1 that correspond to a given ID. I'm looking for something akin to a
2006 Feb 11
2
aggregate vs tapply; is there a middle ground?
Dear all, I'm wanting to do a series of comparisons among 4 categorical variables: a <- aggregate(y, list(var1, var2, var3, var4), sum) This gets me a very nice 2-dimensional data frame with one column per variable, BUT, as help for aggregate says, <<empty subsets are removed>>. I don't see in help(aggregate) how I can change this. In contrast, a <- tapply(y,
2006 Feb 12
0
SUMMARY: aggregate vs. tapply
...an n-dimensional array. Summary of responses follows: Peter Dalgaard: as.data.frame(with(tmp,as.table(tapply(C,list(A=A,B=B),sum)))) Phil Spector wrote: z = tapply(y,list(var1,var2,var3,var4),sum) data.frame(do.call('expand.grid',dimnames(z)),y=do.call('rbind',as.list(z))) Hans Gardfjell: tmp <- data.frame(A=sample(LETTERS[1:5],10,replace=T),B=sample(letters[1:5],10,replace=T),C=rnorm(10)) tmp1 <- with(tmp,aggregate(C,list(A=A,B=B),sum)) tmp2 <- expand.grid(A=sort(unique(tmp$A)),B=sort(unique(tmp$B))) merge(tmp2,tmp1,all.x=T) hadley wickham: Well, you can almost do this...
2004 Nov 22
2
Danish characters i R2.0.1 vs R1.9.1 under winXP
Hi all. After upgrading to R2.0.1 i get > "??" [1] "??" > "??" [1] "\370" > "??" [1] "??" Whereas under R1.9.1 i get > "??" [1] "??" > "??" [1] "??" > "??" [1] "??" Any hints apreciated. Steen Steen Ladelund, statistician +4543233275
2005 Dec 13
2
Labeling a range of bars in barplot?
Hi, I am plotting a distribution of (ordered) values as a barplot. I would like to label groups of bars together to highlight aspects of the distribution. The label for the group should be the range of values in those bars. As this is hard to describe, here is an example; x <- rlnorm(50)*2 barplot(sort(x,decreasing=T)) y <- quantile(x, seq(0, 1, 0.2)) y plot(diff(y)) That last
2005 Jul 11
6
R on kubuntu
Hello all, I am planning to redeploy my workstation under KUBUNTU. Does any body has any r experience installing/using r on this platform? Best regards. -- Constant Depi??reux Managing Director Applied QUality Technologies Europe sprl Rue des D??port??s 123, B-4800 Verviers (Tel) +32 87 292175 - (Fax) +32 87 292171 - (Mobile) +32 475 555 818 (Web) http://www.aqte.be - (Courriel)
2005 Jul 11
6
R on kubuntu
Hello all, I am planning to redeploy my workstation under KUBUNTU. Does any body has any r experience installing/using r on this platform? Best regards. -- Constant Depi??reux Managing Director Applied QUality Technologies Europe sprl Rue des D??port??s 123, B-4800 Verviers (Tel) +32 87 292175 - (Fax) +32 87 292171 - (Mobile) +32 475 555 818 (Web) http://www.aqte.be - (Courriel)
2003 Oct 15
3
Fw: SIMCA algorithm implementation
I have used PCA for data classification by visual examination of the 3D scatter plot of the first 3 principal components. I now want to use the results to predict the class for new data. I have used predict.princomp to predict the scores and then visualise the results on a 3D scatter plot using the rgl library. However, is there an R function that will fit the new data to the class assignments
2005 Dec 06
2
Constructing a transition matrix
Hi, I would like to construct a transition matrix from a data frame with annual transitions of marked plants. plant<-c(1:6) class<-c("seed","seed", "seed", "veg", "rep", "rep") fate<-c("dead", "veg","veg","rep", "rep", "veg") trans<-data.frame(plant, class, fate)