search for: singularitaet

Displaying 20 results from an estimated 21 matches for "singularitaet".

2008 Apr 21
0
Summary of importing vector graphic formats written by R into Open Office
...ive graphic GUI (SVG) or cannot be imported and displayed as an slide by Impress (EPS). NOTES: OpenOffice has partial (but operational) support for SVG (http://wiki.services.openoffice.org/wiki/SVG_Import_Filter) PDF import will be new for OO.org 3.x. SUGGESTED WORKAROUNDS: - Use Cairo package (singularitaet at gmx.net) A quick search on r-project.org pointed me to the Cairo package. Maybe you can try that. - Use svg() devices (ripley at stats.ox.ac.uk) , R 2.7.0 RC has an svg() device on Unix-alikes, and there are RSvgDevice and RSVGTipsDevice packages on CRAN. I've seen so many problems with SVG...
2006 Oct 20
1
Translating lme code into lmer was: Mixed effect model in R
...function. > Could someone help me translating the lme input to a lmer > input? And does someone know of a good explanation of the > kinds of formulas you can input? In the books they only > explain the lme input. > > Thanks, > Lina > > 2006/10/17, Stefan Grosse <singularitaet at gmx.net>: > > > > Please always reply to the list as well as there always might be > > someone faster/better answering (or it could be that I am wrong, so > > someone might correct me) > > > > Indeed Pinheiro/Bates assume gaussian error terms... but I am...
2008 Nov 24
3
select a subset
I have the complete data like id time censor 1 10 0 1 20 0 1 30 0 2 10 0 2 20 1 2 30 0 2 40 0 3 10 0 3 20 0 3 30 1 .... for id 1, i want to select the last row since all censor indicator is 0; for id 2, i want to select the row where censor ==1; for id 3, i also want to select the row where censor==1. So if there is a 1 for censor, then I want to select such a row, otherwise I want to select the
2006 Oct 17
2
Mixed effect model in R
Hi, I am analysing an experiment that has one fixed (6 conditions) and two random factors (11 subjects, 24 images in the conditions). I read somewhere else that you can also see such a design as a nested experiment with the hierarchy: subjects -> condition -> image. For some analysis I have one respond variable and for others I have more. The response variables are non-normally distributed.
2009 May 26
4
Creating multiple graphs based on one variable
Dear List, I would like to create several graphs of similar data. I have x and y values for several different individuals (in this case fish). I would like to plot the x and y values for each fish separately. I can do it using a for loop, but I think I should be using "apply". Please let me know what I am doing wrong, or if there is a "better" way to do this. What I have
2008 Jan 11
4
lattice color problem with symbols: bug?
Dear useR's, I have a problem with the lattice plotting of some symbols: library(lattice) test<-data.frame(x=c(2,3,1,5),u=c(rep(1,2),rep(2,2)),g=c(rep(c(1,2),2))) xyplot(x~u,groups=g, data=test, par.settings=list( superpose.symbol=list(pch=c(22, 23),cex=c(1.7,1.6),col="black") ), key=list( text=list(c("t1","t2")), space =
2006 Aug 25
2
xyplot with different symbols and colors?
Dear List, I try to make a xyplot with different colors and symbols, I came this far: library(DAAG) xyplot(csoa~it|sex*agegp,data=tinting,groups=target,pch=list(1,2),auto.key=list(space = "right")) this produces a plot with different colors and symbols but unfortunately the legend does only follow the color scheme and not the different symbols. Any suggestions what to change? And
2008 Dec 10
2
how to merge panel data stored by variable?
Hi, I have two datasets stored in tab-separated format in the following way file1: country year1 year2 Germany var1 var1 Hungary var1 var1 file2: country year1 year2 Germany var2 var2 Hungary var2 var2 I can easily read in these files, but how can I merge them as a panel dataset? Thanks, Viktor
2009 Aug 18
2
ENC: postscript, options
I'm not shure but I guess that you miss a " and putted it in the wrong place! Try this: postscript("/pathto/filename.eps",horizontal=FALSE,onefile=FALSE) Hope It helps. -----Mensagem original----- De: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] Em nome de e-letter Enviada em: segunda-feira, 17 de agosto de 2009 10:11 Para: r-help at r-project.org
2007 Jun 20
2
"xtable" results doesn't correspond to data.frame
Dear useRs, Am trying to use xtable on the following data.frame and I don't get what I expect: example.table <- data.frame(rbind( c("Gender"," "," "," "), cbind(rep(" ",2),c("Male","Female"),c(3.0,4.0),c(3/7,4/7)) )) colnames(example.table) <- c(" "," ","number of
2008 Nov 24
3
Help With Permutations
I have a problem with permutations functions in R I just started using R so maybe it is an easy question I need to obtain all the 9.somthingExp 157 permutations that can be given from the number from 1 to 100 I wrote the following commands: > library(gregmisc) >options(expressions=1e5) cmat <- combinations(300,2) dim(cmat) # 44850 by 2 >permutations(n=100, r=100)
2007 Jun 07
2
update packages with R on Vista: error
Dear R-list, I have encountered the following error message trying to update R packages: > update.packages(ask='graphics') Warning in install.packages(update[instlib == l, "Package"], l, contriburl = contriburl, : 'lib' is not writable Error in install.packages(update[instlib == l, "Package"], l, contriburl = contriburl, : unable to
2006 Oct 27
2
qplot of ggplot package how to plot different size according to the values and not to the weights?
I have the following Data structure $ step45 : Factor w/ 2 levels $ obserror : num 6.2 6.2 5.6 6.6 6.6 ... $ Mon : num 2.2 2.0 1.0 3.2 2.0 ... $ inc.comp : num 4 5 2 5 5 5 5 5 4 4 ... all I wanted to do is plotting Mon against obserror, the colors should be by step45 and the size of the symbol should be according to inc.comp so I did this:
2007 May 02
3
Query about finding correlations
Hi I have a dataframe which has 3 columns of numeric data A,B,C each of which has been obtained independent of the other. We are trying to find out, which of A or B cause C i.e. We are hypothesising that C is the effect and either A or B, not both is the cause. i.e. A causes C and this cause-effect relationship explains B. The data for A contains more noise than that for B. We are working with
2008 Mar 18
7
download.file()
Hi, I wanted to download a file and did the following: --------------------------------------------------------- > fileLink <- 'ftp://ftp.ncbi.nih.gov/pub/geo/DATA/supplementary/series/GSE1000/GSE1000_RAW.tar' > download.file(fileLink,'/geoDat') trying URL 'ftp://ftp.ncbi.nih.gov/pub/geo/DATA/supplementary/series/GSE1000/GSE1000_RAW.tar' ftp data connection made,
2009 Aug 27
19
Best R text editors?
Quick informal poll: what is everyone's favorite text editor for working with R? I'd like to hear from people who are using editors that have some level of direct R interface (e.g. Tinn-R, Komodo+SciViews). Thanks! --j -- Jonathan A. Greenberg, PhD Postdoctoral Scholar Center for Spatial Technologies and Remote Sensing (CSTARS) University of California, Davis One Shields Avenue The
2009 Jun 01
1
installing sn package
...reet, London          [w] http://www.ucl.ac.uk/~ucfagls/ UK. WC1E 6BT.                [w] http://www.freshwaters.org.uk %~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~%~% ------------------------------ Message: 107 Date: Wed, 27 May 2009 22:19:46 +0200 From: Stefan Grosse <singularitaet@gmx.net> Subject: Re: [R] Factor level with no cases shows up in a plot To: Arthur Burke <burkea@nwrel.org> Cc: r-help@r-project.org Message-ID: <4A1DA062.3000506@gmx.net> Content-Type: text/plain; charset=ISO-8859-1 Arthur Burke wrote: >  > ...  I get the four lines that I e...
2006 Aug 16
1
matching pairs in a Dataframe?
Dear list, I want to extract pairs of values out of a dataframe where one criteria/condition does match. I have an experiment with 3 conditions which were not always applied: e.g.: group cond x A 1 2 A 2 4 A 3 6.5 B 1 3 B 2 4.5 C 1 2.5 C 3 4 D 2 5 D 3
2008 Jan 22
2
CRAN down?
I am having problems to access the r-project.org homepage, someone else as well? (I know there are CRAN mirrors but they link back on the main page if I search something) Stefan
2008 Feb 11
2
gcc 4.3 any known issues?
Hi, Fedora is for Fedora 9 switching to gcc 4.3. Before I test it (rawhide) I want to be sure that R is running. So my question is whether there have been issues compiling R + packages using 4.3? Stefan