Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

8,399 results for “from:Uwe Ligges”

piping the results
Uwe Ligges · May 30, 2003 · r-help

orkun wrote: > Hello > > Could you explain how I can export (or pipe) statistics result to a text > file. > When results are in large quantity. I cannot see all of them in console > > > kind regards > > > Ahmet Temiz > > TURKEY > See ?sink and...

Dots in models formulae
Uwe Ligges · Aug 16, 2005 · r-help

Laurent Valdes wrote: > I have seen, several times, dots (like this: "y ~." ) in formula > descriptions, noticeably in R help. > > I am unable to see what it does correspond to. > > Any ideas ? All other variables (except y) from the given data...

multiple figure windows
Uwe Ligges · Jun 26, 2009 · r-help

Nattu wrote: > Hi, > > Is it possible to plot in multiple windows. for example Figure 1 in one > window and Figure 2 in seperate window simultanously ? Sure, just start another device as in: x11() plot(1:10) x11() plot(1:10...

where is libRmath.a & libRmath.so
Uwe Ligges · May 14, 2010 · r-devel

On 14.05.2010 04:47, Dave Lubbers wrote: > > I see Rmath.h in include. Why can't I find libRmath.a and/or libRmath.so? Since you have not compiled them yet? See the R Installation and Administration manual...

Does R implement Hypergeometric test?
Uwe Ligges · May 2, 2003 · r-help

"Song, Guangchun" wrote: > [Nothing] Please don't use only the subject to ask questions. In this particular case, it would be helpful to tell us what you mean with a "Hypergeometric test" and "waste" some more lines in your e...

removing columns
Uwe Ligges · May 3, 2011 · r-help

On 03.05.2011 13:16, nuncio m wrote: > Hi list, > > I have a matrix with all elements of some columns are zeroes. Is it > possible to remove these columns: Xnew <- X[ , as.logical(colSums(X)), drop=FALSE] Uwe Ligges...

Replacing ' (apostrophe) with "(two apostrophe)
Uwe Ligges · Jan 27, 2010 · r-help

On 27.01.2010 06:45, Steven Kang wrote: > Hi all, > > > I am trying to replace a string containing ' (apostrophe) with "(two > apostrophes not inverted commas). > > i.e > > *asdf'qwer* replaced to *asdf"qwer* > > Is this feasible? gsub("'", '"', "asdf'qwer...

[R-pkg-devel] CRAN incoming queue closed from Sep 1 to Sep 9
Uwe Ligges · Aug 14, 2018 · r-package-devel

Dear package developers, the CRAN incoming queue will be closed from Sep 1 to Sep 9. Hence package submissions are only possible before and after that period. Best, Uwe Ligges (for the CRAN team)

[R-pkg-devel] CRAN submission queue closes from Dec 22 to Jan 3
Uwe Ligges · Dec 10, 2017 · r-package-devel

Dear package developers, the CRAN submission queue closes and will be offline from Dec 22 to Jan 3 due to CRAN team vacations and maintainance work on the CRAN check farm. Best, Uwe Ligges

slackware packages
Uwe Ligges · Aug 21, 2004 · r-help

Carlos Henrique Grohmann wrote: > Hello all, > I'm new in this list and I'd like to know if someone knows about R packages for > slackware linux. I don't know slackware linux, but what about simply installing the packages...

shading
Uwe Ligges · Dec 15, 2002 · r-help

Myriam Abramson wrote: > > I need to shade one area of a graph. Any ideas on how to do that? First set up your plot( ...., type = "n"). Then draw the shading using polygon(...., col = "grey"), after that the lines() and points...

how to uninstall R
Uwe Ligges · Mar 2, 2003 · r-help

Bai Yan wrote: > > After I used 'make distclean', I still can access R input 'R' command. How > could R be completely removed? must I delete all the directory? > > Thanks, > Yan make distclean cleans the sources from previous configures and makes...

[R-pkg-devel] CRAN incoming queue closed from Dec 21 to Jan 02
Uwe Ligges · Dec 17, 2018 · r-package-devel

Dear package developers, the CRAN incoming queue will be closed from Dec 21, 2018 to Jan 02, 2019. Hence package submissions are only possible before and after that period. Best, Uwe Ligges (for the CRAN team)

Windows builder: Package X did not pass R CMD check
Uwe Ligges · Jul 23, 2007 · r-devel

Dear package maintainers, due to some hicc up in my autobuilder, many CRAN package maintainers got a message about an error in their packages for R-2.5.1. Please ignore that one. My sincere apologies for spamming around, Uwe...

how to download files from ftp site
Uwe Ligges · Jul 7, 2010 · r-help

?download.file Uwe Ligges On 07.07.2010 14:05, Benoit Wastine wrote: > Hi all, > I'm running R 2.10.1 on Windows XP and I'd like to read files from a ftp > site. > Does anybody know how...

trivial typo in R administration manual
Uwe Ligges · Aug 16, 2011 · r-devel

Thanks, fixed. Uwe On 14.08.2011 08:22, Ben Bolker wrote: > > the attached should probably read "regarded by some OSes as separate > ..." Patch attached from latest SVN. > > Ben Bolker > > > > > ______________________________________________ > R-devel at r-project.org mailing list > https://stat...

library(forecast) (PR#11111)
Uwe Ligges · Apr 10, 2008 · r-devel

The problem with tseries has been resolved for Win2k and R-2.6.x (as well as the one with Matrix), I hope. Please download a new version from CRAN master in roughly 12 hours from now (you have to...

win-builder offline on Sept. 13
Uwe Ligges · Sep 12, 2008 · r-devel

Hi, tomorrow, saturday, September 13, our department (and hence win-builder as well as building of any packages for Windows) will be offline. Since the IT room gets new fire protection walls, we will have to move out whole IT...

CRAN incoming services and winbuilder down Mar 9-10
Uwe Ligges · Mar 8, 2018 · r-devel

Dear list, due to a full power shutdown in the relevant building at TU Dortmund University we have to shut down winbuilder and the CRAN incoming check service from Mar 9, 5pm CET to Mar 10, 5pm CET Best, Uwe...

Delete a list component?
Uwe Ligges · May 2, 2003 · r-help

R A F wrote: > Hi, how do I delete a component from a list? > > For example, aaa <- list(), aaa$a <- 0, aaa$b <- 0. How do I remove > aaa$a from aaa so that it's left with aaa$b...

Can't find what you're looking for? Try searching with Google .