Displaying 20 results from an estimated 58 matches for "innsbrucker".
Did you mean:
innsbruck
2010 May 04
4
superscript
hello,
i need to add legend text: "4th-root transformation", with the "th"
superscripted -
tried much - but nothing worked..
thanks for any hints,
kay
-----
------------------------
Kay Cichini
Postgraduate student
Institute of Botany
Univ. of Innsbruck
------------------------
--
View this message in context:
2008 Jun 06
5
request: a class having max frequency
Dear R users
I have a very basic question. I tried but could not find the required result. using
dat <- pima
f <- table(dat[,9])
> f
0 1
500 268
i want to find that class say "0" having maximum frequency i.e 500. I used
>which.max(f)
which provide
0
1
How can i get only the "0". Thanks and
best regards
Muhammad Azam
Ph.D. Student
Department of
2010 Aug 25
5
lattice help required
hello,
i want to stack two lattice plots beneath each other using one x-axis and
sharing the same text-panels,
like:
#####################################################################
library(lattice)
y1 <- rnorm(100,100,10)
y2 <- rnorm(100,10,1)
facs<-expand.grid(Sites=rep(c("Site I","Site II"),25),Treatment=c("A","B"))
pl1<-dotplot(y1 ~
2010 Aug 24
1
tick marks on both sides of axis
hello,
all my attempts to get a plot with tick marks on both sides of axis failed -
can someone please help me with this?
thanks,
kay
-----
------------------------
Kay Cichini
Postgraduate student
Institute of Botany
Univ. of Innsbruck
------------------------
--
View this message in context: http://r.789695.n4.nabble.com/tick-marks-on-both-sides-of-axis-tp2336668p2336668.html
Sent from the
2011 Nov 04
3
replace double backslash with singel backslash
I want to replace \\ with \ in:
str <-
"C:\\DOKUME~1\\u0327336\\LOKALE~1\\Temp\\RtmpQ5NJ8X\\TIRIS_PICS\\1_Img.jpg"
and tried:
gsub("\\\\", "\\", str)
but this removes the \\ without replacing them by \
Any help much appreciated,
Kay
-----
------------------------
Kay Cichini
Postgraduate student
Institute of Botany
Univ. of Innsbruck
------------------------
2008 May 28
3
request: which integer in each column is in majority
Respected R helpers/ users
I am one of the new R user. I have a problem regarding to know which of the integer in each column of the following matrix is in majority. I want to know that integer e.g. in the first column 1 is in majority. Similarly in the third column 4 is in majority. So what is the suitable way to get the desired integer for each column. I am looking for some kind reply. Thanks
2010 Sep 15
0
Biostatistician position, Austria
Dear all,
My company located in Innsbruck, Austria, has an opening for a
biostatistician. If you have any interest, feel free to contact me or Dr
Markus Speiser (markus.speiser*at*biocrates.com).
Best regards,
David
##################
Biostatistician (m/f)
Job Description
BIOCRATES Life Sciences AG is a leading metabolomics company using a
mass-spectrometry based technology
2008 Mar 20
1
ggplot - axis labels angle
dear R-tists,
im an struggling with labeling ticks of the axis in a ggplot.
i would like to print the text associated with the ticks being ploted
with a 90 degree angle.
how can i possibly do this?
cheers.
bernd.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Bernd Ebersberger
Management Center Innsbruck, Austria
[[alternative HTML version deleted]]
2005 Apr 14
0
Antw: CentOS and HP Drivers
We are using the Hp-Agents continuously on our Servers.
The latest Version with centos-3.3 was no Problem.
Mainly it depends on the used kernel Versions,
because the raid driver modules are not for vanilla kernels, only for official Kernels from Redhat, Suse ...
The only thing you have to do, is to fake the /etc/redhat-release,
because the installer looks for supported Linux Versions.
After
2010 Apr 28
1
model selection, lme
hello,
i'd like to evaluate the 2 factors (f1 with 4, f2 with 2 levels) and its
interactions in my model for writing up a summary table with
likelihood-ratio tests for publication purpose.
now i'm unsure about which terms of my model may be dropped from the full
model and which not.
mfull<-lme(resp~f1*f2,random=...)
m1<-lme(resp~f1+f2,..)
m2<-lme(resp~f1,..)
2008 May 29
1
openafs kernel module
We start to use centos 5 for our workstation at our site (University Innsbruck)
and we use openafs to hold the home directories. There would be a big advantage
to have the openafs kernel module (and the additional rpms) in the centos
extras (or addons) repository with an automatic compile for the available
kernels.
If you need any help to do this i would be happy to participate in any way.
1998 Apr 02
2
Password changing...
Hello samba gurus!!!
I have samba-1.9.18p4 installed on Linux RH5.0.
Ability to change the SMB password from a Windows 95 client is very
fine,
but if 'normal' user have no password and record in smbpasswd file apper
like this
user:uid:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:.....
then no chance to change password from a Windows 95 client,
and by using smbpasswd.
2010 Oct 13
1
interaction contrasts
hello list,
i'd very much appreciate help with setting up the
contrast for a 2-factorial crossed design.
here is a toy example:
library(multcomp)
dat<-data.frame(fac1=gl(4,8,labels=LETTERS[1:4]),
fac2=rep(c("I","II"),16),y=rnorm(32,1,1))
mod<-lm(y~fac1*fac2,data=dat)
## the contrasts i'm interressted in:
c1<-rbind("fac2-effect in
2010 May 06
1
how to extract from obj. created by plot function stressplot without printing plot?
hello,
i'd like to extract values from stressplot, but as this should happen within
a long run of code, which also does a multiple plot, i need to prevent
stressplot to print to the device.
i tried ..,plot=F), but this is useless.
any advise on this?
thanks,
kay
-----
------------------------
Kay Cichini
Postgraduate student
Institute of Botany
Univ. of Innsbruck
2008 Jun 02
2
request: To add an extra row in a matrix
Dear R users
I have a problem regarding an addition of an extra "row" to a matrix. e.g. i have a matrix
a <- matrix(1:6,2,3)
> a
[,1] [,2] [,3]
[1,] 1 3 5
[2,] 2 4 6
I want to add a matrix having just one row. e.g.
b <- matrix(7:9,1,3)
> b
[,1] [,2] [,3]
[1,] 7 8 9
Now i want to get result like this
[,1] [,2] [,3]
[1,] 1 3 5
2007 Jan 18
2
memdisk, free memory
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,
I am having trouble with memdisk not freeing all all memory - mem /c
shows only about 570K memory (and I happen to need that extra memory in
DOS ... :-( ).
I found some (rather old) information about this issue. It seems as if
this is just what is happening to me:
http://syslinux.zytor.com/archives/2003-June/002213.html
2010 Aug 19
1
logistic regression tree
hello everyone,
i sampled 100 stands at 20 restoration sites and presence of 3 different
invasive plant species.
i came across logistic regression trees and wonder if this is suited for my
purpose - predicting presence of these problematic invasive plant species
(one by one) by a set of recorded ecological / geographical parameters.
i'd be glad if someone would comment on applying this
2007 Feb 02
2
Dell and pxelinux keyboard problems
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,
I am having trouble with one Dell system and pxelinux: The keyboard does
not properly work.
The computer boots, I press F12 to select the boot device, then I select
the network card. Up to that point the keyboard works fine.
Then pxelinux is booted, and I use menu.c32 to display a menu (or
vesamenu.c32 - same result). Now the keyboard does not
2008 Jun 03
1
request: An array declarion problem
Dear R users
I tried a lot to solve the following problem but could not. I have two arrays having same order i.e 1 by 150.
j=10; ss=150; r=array(0 , c( j , ss )); rr=array(0 , c( j , ss )); r1=array(0 , c( j-1 , ss )); r2=array(0 , c( j-1 , ss ));
r3=array(0 , c( 2 , ss ))
for(i in 1:j-1){
r1[ i , ] <- r[ j+1, ]-r[ j, ]; r2[ i , ] <- rr[ j+1, ]-rr[ j, ]
2010 May 19
2
contrasts for lmer model
hello,
i found it most convenient to use package contrast for planned comparisons
on mixed models.
for instance i have a model with 2 fixed factors, one with 4 levels (stage)
and one with 2 levels (gap) and a nested random factor (site) and i tested
gap within level A of factor stage:
library(contrast)
library(nlme)
m1<-lme(rich ~ stage*gap, random=~1|site,data=richness)
contrast(m1,
a =