search for: nbeinstr

Displaying 12 results from an estimated 12 matches for "nbeinstr".

Did you mean: beinst
2006 Jun 14
4
write data from function into external table
...d like to write data into an external table that the function does not know. Why is this not working / what alternatives exist? Thanks, Sebastian ------------------------------------------------ Sebastian Leuzinger University of Basel, Department of Environmental Science Institute of Botany Sch?nbeinstr. 6 CH-4056 Basel ph 0041 (0) 61 2673511 fax 0041 (0) 61 2673504 email Sebastian.Leuzinger at unibas.ch web http://pages.unibas.ch/botschoen/leuzinger
2008 Jan 07
4
is there something like or() ?
...a" | table1$var2=="b" | table1$var2=="c" | table1$var2=="d","var1"]) would do. thanks for any hint ---------------------------------------------- Dr. Sebastian Leuzinger University of Basel, Department of Environmental Science Institute of Botany Sch?nbeinstr. 6 CH-4056 Basel ph 0041 (0) 61 2673511 fax 0041 (0) 61 2673504 email Sebastian.Leuzinger at unibas.ch web http://pages.unibas.ch/botschoen/leuzinger
2005 Jul 28
1
stl()
...to use stl() so that the remainder eventually becomes white noise? i used stl repeatedly but there is autocorrelation in the remainder that i can't get rid of. os: linux suse9.3 ------------------------------------------------ Sebastian Leuzinger Institute of Botany, University of Basel Sch??nbeinstr. 6 CH-4056 Basel ph 0041 (0) 61 2673511 fax 0041 (0) 61 2673504 email Sebastian.Leuzinger at unibas.ch web http://pages.unibas.ch/botschoen/leuzinger
2005 Dec 16
2
dendrogram branches with different lty
...solve this. Any suggestions? Patrick hc <- hclust(dist(USArrests), "ave") (dend1 <- as.dendrogram(hc)) par(mfrow=c(2,2)) plot(dend1) plot(dend1[[1]],edgePar=list(lty=3)) plot(dend1[[2]],edgePar=list(lty=1)) -- Patrick Kuss PhD-student Institute of Botany University of Basel Sch??nbeinstr. 6 CH-4056 Basel +41 61 267 2976
2005 Dec 13
2
interruption when pasting code into R under linux
...the code is pasted, and the text interrupts somewhere arbitrarily. It does not happen when smaller bits are pasted subsequently. I use linux suse 9.3 with the latest version of R ------------------------------------------------ Sebastian Leuzinger Institute of Botany, University of Basel Sch??nbeinstr. 6 CH-4056 Basel ph 0041 (0) 61 2673511 fax 0041 (0) 61 2673504 email Sebastian.Leuzinger at unibas.ch web http://pages.unibas.ch/botschoen/leuzinger
2008 Jun 18
4
Editor for Mac OSX
...ch I am reluctant to start using. I am on a MacBook Air with OS X 10.5 using R 2.7.0 Thanks Sebastian .............................................................................. Sebastian Leuzinger McClintock, PhD University of Basel, Department of Environmental Science Institute of Botany Schönbeinstr. 6 CH-4056 Basel ph 0041 (0) 61 2673511 fax 0041 (0) 61 2673504 email Sebastian.Leuzinger@unibas.ch web http://pages.unibas.ch/botschoen/leuzinger private: Thannerstrasse 47, 4054 Basel SWITZERLAND ++41 (0) 77 421 85 59 email Lbaschi@hotmail.com ........................................
2004 Oct 20
2
common axis label in multiple plot area
Hello A very short question: Using multiple plots with par(mfrow=c(3,3)), how can I get R to indicate one common y- and x-axis label? I tried to use text() in par, but this is then overwritten when I plot the graphs. -- Sebastian Leuzinger Institute of Botany, University of Basel Schönbeinstr. 6 CH-4056 Basel Ph. 0041 (0) 61 267 3511 fax 0041 (0) 61 2673504 email: Sebastian.Leuzinger@unibas.ch <mailto:Sebastian.Leuzinger@unibas.ch> web: http://www.unibas.ch/botschoen/leuzinger/e.shtml <http://www.unibas.ch/botschoen/leuzinger/d.shtml> [[alternative HTML version deleted]...
2006 Apr 13
1
assigning 'heat.colors' according to ages in 'symbols()'
...,7,3,2,8,3,6,5,5) y <- c(0,5,4,2,7,6,4,5,3,7,9,2) r <- c(0.1,0.4,0.3,0.2,0.5,0.3,0.2,0.4,0.3,0.2,0.1,0.2) a <- c(0,4,2,3,5,6,8,2,9,10,11,6) symbols(x,y,circles=r,bg=heat.colors(17),xlim=c(0,10),ylim=c(0,10),inches=F) -- Patrick Kuss PhD-student Institute of Botany University of Basel Sch?nbeinstr. 6 CH-4056 Basel +41 61 267 2976
2006 Aug 10
1
installing rimage
...but why did it find the fftw library which rimage also required and i installed at the very same place? OS: Linux Suse 9.3 R version 2.1.0 thanks ------------------------------------------------ Sebastian Leuzinger University of Basel, Department of Environmental Science Institute of Botany Sch?nbeinstr. 6 CH-4056 Basel ph 0041 (0) 61 2673511 fax 0041 (0) 61 2673504 email Sebastian.Leuzinger at unibas.ch web http://pages.unibas.ch/botschoen/leuzinger
2005 May 03
3
RMySQL installation: libz missing
Hi I run suse linux 9.1 and I installed MySQL server, client, devel, bench. DBI is installed, when I try to install RMySQL I get an error saying, that libz is missing. (paths to libs were set:export PKG_CPPFLAGS="-I/usr/include/mysql/" export PKG_LIBS="-L/usr/lib/mysql/ -lmysqlclient") so my question: where do I get the libz files (are these mysql files? if yes, why were
2005 Dec 01
4
suppress tick labels
...able to suppress tick labels (not tick marks)? i know there is a way around this with axes=F and then draw new axes, but it would be easier to suppress them in the first place. -- ------------------------------------------------ Sebastian Leuzinger Institute of Botany, University of Basel Sch??nbeinstr. 6 CH-4056 Basel ph 0041 (0) 61 2673511 fax 0041 (0) 61 2673504 email Sebastian.Leuzinger at unibas.ch web http://pages.unibas.ch/botschoen/leuzinger
2005 Dec 09
3
retrieving p-values in lm
...) X <- data.frame(alt,H) lm.res <- summary(lm(H~alt,data=X)) lm.res p1 <- lm.res[[4]][[8]] p1 lm.res.2 <- summary(lm(H~alt+I(alt^2),data=X)) lm.res.2 str(lm.res.2) # where is p p2 <- lm.res.2[[???]][[????]] -- Patrick Kuss PhD-student Institute of Botany University of Basel Sch??nbeinstr. 6 CH-4056 Basel +41 61 267 2976