search for: rnew

Displaying 20 results from an estimated 333 matches for "rnew".

Did you mean: new
2012 Oct 12
0
Creating a correlation matrix with significance levels
...ifelse(p < .01, "** ", ifelse(p < .05, "* ", " "))) ## trunctuate the matrix that holds the correlations to two decimal R <- format(round(cbind(rep(-1.11, ncol(x)), R), 2))[,-1] ## build a new matrix that includes the correlations with their apropriate stars Rnew <- matrix(paste(R, mystars, sep=""), ncol=ncol(x)) diag(Rnew) <- paste(diag(R), " ", sep="") rownames(Rnew) <- colnames(x) colnames(Rnew) <- paste(colnames(x), "", sep="") ## remove upper triangle Rnew <- as.matrix(Rnew) Rnew[upper.t...
2000 Aug 06
1
make pkg on windows NT
...1 bash shell and tolls with the MingW compiler, version 2.95.2-1 installed seperately and first in the path. I have active perl 6.16 as well. Here is the error I get when i run the make pkg- script from the gnuwin32 directory bash-2.03$ make DEBUG=T pkg-maptools make DLLNM= EXTRADOCS= \ -C c:/Rnew/rw1010/src/library/maptools PKG=maptools RHOME=c:/Rnew/rw1010 RLIB= c:/Rnew/rw1010/library \ -f c:/Rnew/rw1010/src/gnuwin32/MakePkg make[1]: Entering directory `c:/Rnew/rw1010/src/library/maptools' Syntax error: Unterminated quoted string make[1]: *** [c:/Rnew/rw1010/library/maptools/zzzz] Er...
2005 Oct 11
2
Sweave and Rnews
Hello list, I am writing a paper for Rnews. I use Sweave to do it. I did not find information about writing a paper for Rnews using Sweave and have some questions: - Is there a problem to use the environment 'Sinput' in the place of 'example' or 'smallexample'. It works fine but perhaps there are some technical/...
2001 May 08
1
Rnews 2001/2
Dear package author, We are now accepting submissions for the second issue of the R Newsletter. For more information see http://cran.r-project.org/doc/Rnews/ If you are the author of a package on CRAN and you would like to promote it a little bit, or if you simply have an interesting application using R, we hope you can find some time to write a short article on it. We suggest that it be approximately 2 pages or less. The idea of the newsletter is...
2011 Dec 15
1
slight documentation error in "stats" package "arima"
The documentation for the arima function in the package stats has a slight error. It references: Ripley, B. D. (2002) Time series in R 1.5.0. R News, 2/1, 2–7. [1]http://www.r-project.org/doc/Rnews/Rnews_2002-1.pdf This should be: Ripley, B. D. (2002) Time series in R 1.5.0. R News, 2/2, 2–7. [2]http://www.r-project.org/doc/Rnews/Rnews_2002-2.pdf Anyone know who I should tell about this? Thanks! - Jan References 1. http://www.r-project.org/doc/Rnews/Rnews_2002-1.pdf 2. http://www.r-p...
2001 Aug 13
0
Rnews 2001/3
Dear package author, We are now accepting submissions for the third issue of the R Newsletter. For more information see http://cran.r-project.org/doc/Rnews/ If you are the author of a package on CRAN and you would like to promote it a little bit, or if you simply have an interesting application using R, we hope you can find some time to write a short article on it. We suggest that it be approximately 2 pages or less. The idea of the newsletter is...
2002 Mar 24
0
Rnews 2002/2
Dear package author, We are now accepting submissions for the 2002/2 issue of the R Newsletter. For more information see http://cran.r-project.org/doc/Rnews/ If you are the author of a package on CRAN and you would like to promote it a little bit, or if you simply have an interesting application using R, we hope you can find some time to write a short article on it. We suggest that it be approximately 2 pages or less. The idea of the newsletter is...
2002 Aug 28
0
Rnews 2002/3
Dear package author, We are now accepting submissions for the 2002/3 issue of the R Newsletter. For more information see http://CRAN.R-project.org/doc/Rnews/ If you are the author of a package on CRAN and you would like to promote it a little bit, or if you simply have an interesting application using R, we hope you can find some time to write a short article on it. We suggest that it be approximately 2 pages or less. The idea of the newsletter is...
1999 Apr 21
0
[MAILER-DAEMON@biostat.ku.dk: Returned mail: /home/sfe1/r-bugs/.forward: line 1: "|/home/sfe1/r-bugs/bin/new_message Rnew"... User r-bugs@biostat.ku.dk doesn't have a valid shell for mailing to programs] (PR#170)
...11137.NAA09576@biostat.ku.dk> To: <pwhiting@sprint.net> MIME-Version: 1.0 Content-Type: multipart/report; report-type=delivery-status; boundary="NAA09576.924694665/biostat.ku.dk" Subject: Returned mail: /home/sfe1/r-bugs/.forward: line 1: "|/home/sfe1/r-bugs/bin/new_message Rnew"... User r-bugs@biostat.ku.dk doesn't have a valid shell for mailing to programs Auto-Submitted: auto-generated (failure) This is a MIME-encapsulated message --NAA09576.924694665/biostat.ku.dk The original message was received at Wed, 21 Apr 1999 13:37:43 +0200 from blueberry.kubism.ku....
2005 Jan 04
2
warnings and errors with R CMD INSTALL
...d rather would prefer vendors binaries but since the current version of Ubuntu defaults to 1.9.x I had to compile R on my own in order to be up to date! So far, everything went fine and R runs smoothly. Unfortunately I am not able to use R CMD INSTALL command to install add-on packages. I followed RNews 3/3 and used: 1. R CMD INSTALL package_version.tar.gz and 2.options(CRAN="http://umfragen.sowi.uni-mainz.de/CRAN/") install.packages("pkg1". "pkg2") Both approaches end up i.e.: WARNING: invalid package 'pkg1.tar.gz' ERROR: no packages specified Well, R...
2009 Mar 13
2
code to find all distinct subsets of size r from a set of size n
...e n. P 138 of MASS (4th ed) notes that "The code to generate this efficiently is in the scripts". I was unable to find this code on quick inspection of the \library\MASS\scripts file for Chapter 5 and 'subsets' is not a function in MASS. I did find this problem is discussed in RNews, Programmer's Niche 1(1):27 - 30 and RNews, 1(2):29-31. Is there function in 'base' R or other package to do this? Thanks. --Dale
2004 Mar 22
3
Distributed computing
Dear all, does anyone know if there exists an effort to bring some kind of distributed computing to R? The most simple functionality I'm after is to be able to explicitly perform a task on a computing server. Sorry if this is a non-informed newbie question... Best regards Anders Sj?gren PhD Student Dept. of Mathematical Statistics Chalmers University of Technology Gothenburg, Sweden
2008 Nov 04
3
getting "small" graphs with Sweave using Rnews.sty
I'm sorry for having to post this, but I can't seem to find any solutions to this, which seems pretty simple, but then again... I've started playing with the example r news project and wanted to start adding some graphs, but replacing: \begin{figure} \vspace*{.1in} \framebox[\textwidth]{\hfill \raisebox{-.45in}{\rule{0in}{1in}} A graph goes here \hfill}
2001 Jul 10
1
Citing an article from R News
The editorial in Volume 1/2 of R News requests that we cite articles in R News by using the ISSN 1609-3631 and the URL http://cran.R-project.org/doc/Rnews/. Could someone provide a sample BibTeX entry, say for Brian Ripley's article on "Installing R under Windows" from that issue? I am using the natbib package, if that matters. I would start with @Article{R:Ripley:2001, author = {Brian D. Ripley}, title = {Installing {R} un...
2007 Nov 02
1
vignettes and papers
Hello everyone Lots of my packages have been the subject of journal articles either in JSS or Rnews or (in one case) elsewhere. I would like to add these articles to my packages as vignettes. Reproducing the papers exactly requires a number of files [such as style files or PDFs] to be included in the inst/doc directory to pass R CMD check. A vanilla .Rnw file seems to be a good idea, but lo...
2007 Jun 20
2
Linear Mixed Models with nlme, more than one random effect
Hi, I' trying to learn how to use lme for Linear Mixed Models and I have a problem when I have to include more than one random effect in my model. I know that this could be a stupid question to ask, but I'm not able to solve it by myself... One example: if my model is response = operator + block + day with operator and block as fixed effects and day as random effect, I use res.lme
2005 Oct 24
3
lme and lmer syntax
Hi, I have this: lme(y~x1+x2,random=~1|x1/x2) How to make this random effect using lmer? I try this: lmer(y~x1+x2+(1|x1/x2) But it dont work. Any idea? Thanks Ronaldo -- System halted! -- |> // | \\ [***********************************] | ( ?? ?? ) [Ronaldo Reis J??nior ] |> V [UFV/DBA-Entomologia ] | / \ [36570-000 Vi??osa -
1998 Oct 05
1
R-beta: help r-new
he copiado los archivos para windows95 en un directorio rnew, donde tengo el ejecutable rjune.exe, al correr este archivo me aparece un menu con las opciones File, workspace, edit, windows y help. La ventana de la consola permacene abierta y no se como se puede iniciar la escritura de un programa ni como compilarlo Yo estoy interezado en este lenguaje y...
2007 Aug 21
4
Formatting Sweave in R-News
...DF? Even if I hard-hack the graphics to be scaled up in size, that does not get rid of the vertical line that in between the two columns, and thus breaking my image. I realise that this is not an R problem, but more a latex problem, but I am hoping that somebody has faced similar problems with the Rnews styles and has an idea on how to do this. Thank you, Yours sincerely, -- Arjun Ravi Narayan contact at arjunnarayan.com
2004 Jul 28
0
Packages of snippets?
...evel-bounces@stat.math.ethz.ch]On Behalf Of Roger D. Peng > Sent: Wednesday, June 23, 2004 11:35 PM > To: Duncan Murdoch > Cc: Patrick Connolly; Barry Rowlingson; r-devel@stat.math.ethz.ch > Subject: Re: [Rd] Packages of snippets? > > > Duncan, I very much like your idea of a RNews/JSS "package" which > would contain code snippets from different contributors. In > fact, I would be willing to maintain such a package if it came > into existence. One note (I'm not sure if this is a flaw, > strictly speaking), the package would only be able to cov...