Re: [R] How to use curve() function without using x as the variable name inside expression?

2015-01-31 Thread Philippe Grosjean
, Philippe Grosjean On 31 Jan 2015, at 09:39, Rolf Turner r.tur...@auckland.ac.nz wrote: On 31/01/15 21:10, C W wrote: Hi Bill, One quick question. What if I wanted to use curve() for a uniform distribution? Say, unif(0.5, 1.3), 0 elsewhere. My R code: func - function(min, max){ 1

Re: [R] some question about vector[-NULL]

2014-09-11 Thread Philippe GROSJEAN
On 11 Sep 2014, at 08:24, PIKAL Petr petr.pi...@precheza.cz wrote: Hi You still do not disclose important info about details of your functions. However, when you want to perform indexing like you show, you maybe can get rid of NULL and use zero instead. a-1:5 a[-c(1,3)] [1] 2 4 5

Re: [R] some question about vector[-NULL]

2014-09-11 Thread Philippe GROSJEAN
..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons University, Belgium ( ( ( ( ( .. On 11 Sep 2014

[R] Default argument not passed to subfunction when argument name matches default expression

2014-03-31 Thread Philippe Grosjean
Hello, I have difficulties to understand this one: foo - function (y = 2) { bar - function (y = y) y^2 bar() } foo() #! Error in y^2 : 'y' is missing foo(3) #! Error in y^2 : 'y' is missing Note that this one works: foo - function (y = 2) { bar - function (y = y) y^2 bar(y) #

Re: [R] Problem with do.call().

2014-03-28 Thread Philippe Grosjean
On 28 Mar 2014, at 00:57, Duncan Murdoch murdoch.dun...@gmail.com wrote: On 27/03/2014, 7:38 PM, Thomas Lumley wrote: You get what you wanted from do.call(plot,list(x=quote(x),y=quote(y))) By the time do.call() gets the arguments it doesn't know how y was originally computed, just what

Re: [R] sub function problem

2014-03-04 Thread Philippe Grosjean
-processes-with-taskkill-in-microsoft-windows/3585/ Best, Philippe Grosjean On 04 Mar 2014, at 08:33, PIKAL Petr petr.pi...@precheza.cz wrote: Hi I also used Tinn-R but an old version 1.18.5.6 and did not experience such error. Maybe you could try to use plain Notepad for your code just

Re: [R] delayedAssign list members

2014-03-04 Thread Philippe Grosjean
, for instance, about how you save and reload, or dump(), etc. environment objects, if that happens to be something you want do too. So, unless you really find an advantage with this, you would be better to continue using plain list() and try to forget about delayedAssign(). Best, Philippe Grosjean

Re: [R] Performance issue with attributes

2014-02-21 Thread Philippe Grosjean
You can use setattr() in the data.table package. It can be used too on data.frames or other objects. Best, Philippe Grosjean On 22 Feb 2014, at 03:13, Smart Guy smartgu...@gmail.com wrote: Hi All I am having problem running the 'attributes' command to set a attribute on each column

Re: [R] shapiro.test

2014-02-21 Thread Philippe Grosjean
of the students realise what happens? I guess, it is closer to zero than to one, unfortunately. Wait… I need another SnowsPenultimateXxxxTest() here to check the null hypothesis that all my students are doing what they are supposed to do when discovering a new statistical tool! Best, Philippe

Re: [R] memory use of copies

2014-01-29 Thread Philippe GROSJEAN
..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons University, Belgium ( ( ( ( ( .. On 29 Jan 2014, at 00:53, Ross

Re: [R] bug in rle?

2014-01-08 Thread Philippe Grosjean
not need to change: identical(fac, inverse.rle(fac.rle)) identical(ord, inverse.rle(ord.rle)) Best, Philippe Grosjean On 08 Jan 2014, at 18:48, Bert Gunter gunter.ber...@gene.com wrote: Thanks Bill: Personally, I don't need it. Once Brian made me aware of the underlying issue, I can handle

Re: [R] Package dependencies in building R packages

2013-12-31 Thread Philippe Grosjean
On 30 Dec 2013, at 20:01, Axel Urbiz axel.ur...@gmail.com wrote: Thanks for your kind response Duncan. To be more specific, I'm using the function mvrnorm from MASS. The issue is that MASS depends on survival and I have a function in my package named tt() which conflicts with a function in

Re: [R] convert list of lists to simple list

2013-10-10 Thread Philippe Grosjean
is a starting point: unlist(test, recursive = FALSE) … but you would probably need to build a recursive call of the function down to the last 'list level'. unlist(recursive = TRUE) goes one level too far. Best, Philippe Grosjean __ R-help@r-project.org

Re: [R] Vector of char generated by Sys.getenv function is not available when the package is loaded

2013-09-24 Thread Philippe Grosjean
Hi JCFaria, You package is supposed to be used only under Windows, right? Then, use: OS_type=windows in the DESCRIPTION file… and, of course, use R CMD check/R CMD build/ R CMD INSTALL under Windows only. Best, Philippe On 23 Sep 2013, at 20:55, Jose Claudio Faria joseclaudio.fa...@gmail.com

Re: [R] error loading tcltk2

2012-04-21 Thread Philippe Grosjean
There is indeed a bug in tcltk2, while I introduced some changes targeting a better look of Tk widgets on Ubuntu. This new code is assuming 'cat' is available on all platforms. Indeed on Windows, it *is* available iff Rtools are installed, which is the case apparently on all test machines so

Re: [R] Sweave UFT8 problem

2012-04-15 Thread Philippe Grosjean
Hello, Have you tried to put that command in a comment: %\usepackage[utf8]{inputenc} I haven't tested it in this particular case, but it works in some other situations. Best, Philippe ..¡})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean

Re: [R] A little exercise in R!

2012-04-13 Thread Philippe Grosjean
appearing there!!! Best, Philippe ..¡})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons University, Belgium

Re: [R] Easier ways to create .Rd files?

2011-08-24 Thread Philippe Grosjean
go, but as with most things my documentation typically lags behind my coding by a few days. --j See inlinedocs package on CRAN. There are several examples included. Best, Philippe Grosjean __ R-help@r-project.org mailing list https://stat.ethz.ch

Re: [R] Wiki/revision control to management of CRAN package repository

2011-08-22 Thread Philippe Grosjean
. The drawback is a little bit of confusion for the end-user that does not always easily know which of the different implementations he should adopt. Best, Philippe Grosjean On 22/08/11 06:02, Etienne Low-Décarie wrote: I propose the following humbly, with little know how as to how to implement

Re: [R] Missing datasets (2.13.1)

2011-08-15 Thread Philippe Grosjean
' not found Just read the error message to understand what happens. Basically, it says that 'ToothGrow' does not exist. I suspect that you are looking for: data(ToothGrowth) Best, Philippe Grosjean What happens if you type library(datasets) Sounds like your R installation is either broken

Re: [R] try-error can not be test. Why?

2010-09-08 Thread Philippe Grosjean
, Philippe Grosjean Many thanks -- View this message in context: http://r.789695.n4.nabble.com/try-error-can-not-be-test-Why-tp2531675p2531675.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https

Re: [R] non-linear plot parameters

2010-08-26 Thread Philippe Grosjean
On 26/08/10 19:48, David Winsemius wrote: On Aug 26, 2010, at 1:35 PM, Marlin Keith Cox wrote: I need the parameters estimated for a non-linear equation, an example of the data is below. # rm(list=ls()) I really wish people would add comments to destructive pieces of code. Time-c( 0, 0,

Re: [R] list of closures

2010-08-25 Thread Philippe Grosjean
Unless for learning R, you should really consider R.oo or proto packages that may be more convenient for you (but you don't provide enough context to tell). Best, Philippe On 26/08/10 06:28, Gabor Grothendieck wrote: On Thu, Aug 26, 2010 at 12:04 AM, Stephen T.obsessiv...@hotmail.com wrote:

Re: [R] Latex no where to be seen

2010-08-20 Thread Philippe Grosjean
On 20/08/10 09:11, Joshua Wiley wrote: On Thu, Aug 19, 2010 at 9:18 PM, Donald Paul Winston satchwins...@yahoo.com wrote: I'm experimenting using R as a report writer. I'm told LaTex is the destination for my quest. But ?latex() gives me an error. The package Just as a side note, using

Re: [R] Latex no where to be seen

2010-08-20 Thread Philippe Grosjean
On 20/08/10 13:22, Duncan Murdoch wrote: Philippe Grosjean wrote: On 20/08/10 09:11, Joshua Wiley wrote: On Thu, Aug 19, 2010 at 9:18 PM, Donald Paul Winston satchwins...@yahoo.com wrote: I'm experimenting using R as a report writer. I'm told LaTex is the destination for my quest. But ?latex

[R] as.logical(factor) behaviour

2010-08-15 Thread Philippe Grosjean
-- ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons University, Belgium

Re: [R] as.logical(factor) behaviour

2010-08-15 Thread Philippe Grosjean
Hope that helps, Sam On Sun, Aug 15, 2010 at 5:32 AM, Philippe Grosjean phgrosj...@sciviews.org wrote: Hello, According to ?as.logical: as.logical attempts to coerce its argument to be of logical type. For factors, this uses the levels (labels). However, as.logical(factor(c(FALSE, TRUE))) [1

Re: [R] Interrupt R?

2010-07-12 Thread Philippe Grosjean
Take a look also at ?tclTaskSchedule in package tcltk2. Best, Philippe Grosjean On 12/07/10 08:53, Prof Brian Ripley wrote: On Sun, 11 Jul 2010, Spencer Graves wrote: Hi, Richard and Duncan: Thank you both very much. You provided different but workable solutions. 1. With Rgui 2.11.1

Re: [R] OOP and passing by value

2010-06-09 Thread Philippe Grosjean
- to assign in R. See for instance help(names-). This is the most conventional and easier way to do this. Best, Philippe Grosjean On 09/06/10 14:28, michael meyer wrote: Greetings, I love the R system and am sincerely grateful for the great effort the product and contributors are delivering. My

Re: [R] SciViews-K / Komodo as editor on the Mac [was: StatET plot problem]

2010-06-06 Thread Philippe Grosjean
, Philippe Grosjean wrote: Matt, Yes, I see this problem. Thanks for report. Also ??topic is wrong. Note two points: 1) ?topic works with R.app/R64.app. So, just in case you would consider using R.app instead of R inside a terminal session, 2) I have not noticed this bug because using ?topic

Re: [R] Creating pdf report

2010-06-06 Thread Philippe Grosjean
On 06/06/10 19:26, bjlwilkin...@gmail.com wrote: I'm looking for a way to create a pdf report that contains multiple graphs on one page as well as tables (ideally with some lines below categories etc.) . I have used the pdf(filename) followed by dev.off() to date but this prints one graph per

Re: [R] SciViews-K / Komodo as editor on the Mac [was: StatET plot problem]

2010-06-05 Thread Philippe Grosjean
the standard editor on a mac and it´s well worth the hustle. best matt On 04.06.2010, at 11:13, Philippe Grosjean wrote: On 04/06/10 10:37, Bunny, lautloscrew.com wrote: Dear all, after trying several suggestions from the list for a nice R-Editor / IDE for MacOS X and really trying some of those

Re: [R] StatET plot problem

2010-06-04 Thread Philippe Grosjean
On 04/06/10 10:37, Bunny, lautloscrew.com wrote: Dear all, after trying several suggestions from the list for a nice R-Editor / IDE for MacOS X and really trying some of those that needed to be configured a little more (such as emacs, aquamacs and StatET / Eclipse), I prefer StatET at the

Re: [R] Problem with Tinn-R communicating with REvolution R

2010-04-27 Thread Philippe Grosjean
be. One solution would be to install a full Tcl/Tk from ActiveState and use it instead (read Windows FAQ, I think instruction is there). Best, Philippe ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology

Re: [R] GUI /IDE

2010-03-30 Thread Philippe Grosjean
folding on named regions too. This is put on my to do list! Best, Philippe ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons University, Belgium

Re: [R] rpad ?

2010-03-23 Thread Philippe Grosjean
. Best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons University, Belgium

Re: [R] C# DLL Library

2010-03-17 Thread Philippe Grosjean
Hello, Also, if you go for socket connection, you could give a try to svSocket. Best, Philippe ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons University

Re: [R] Three most useful R package

2010-03-03 Thread Philippe Grosjean
;-) ... But I guess you mean: the three most useful OPTIONAL packages? Best, Philippe Grosjean __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html

Re: [R] R wiki link ?

2010-02-08 Thread Philippe Grosjean
Prof. John C Nash wrote: Is this a transient problem, or has the link to the R wiki on the R home page (www.r-project.org) to http://wiki.r-project.org/ been corrupted? I can find http://rwiki.sciviews.org that works. Yes, the problem is known. I have to fix it. Best, Philippe Grosjean JN

Re: [R] color palette for points, lines, text / interactive Rcolorpicker?

2010-01-29 Thread Philippe Grosjean
If you use tcltk package package, you can do: as.character(.Tcl(tk_chooseColor)) Best, Philippe Greg Snow wrote: I don't know of any existing palettes that meet your conditions, but here are a couple of options for interactive exploration of colorsets (this is quick and dirty, there are

Re: [R] Emacs vs Eclipse vs Rcmdr

2010-01-04 Thread Philippe Grosjean
. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons University, Belgium ( ( ( ( ( .. Barry Rowlingson wrote: On Sun, Jan 3, 2010 at 10:59 PM, Charlotte Maia mai...@gmail.com wrote: I'm not so much

Re: [R] [Off-topic] problem with Tinn-R editor

2010-01-03 Thread Philippe Grosjean
Ask directly to Jose-Claudio Faria (jcfa...@users.sourceforge.net). He is the author and maintainer of Tinn-R. Best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic

Re: [R] where can I download package svIO?

2009-11-18 Thread Philippe Grosjean
that refarctoring of new ones is possible. On CRAN, you find this description: TinnR: Resources of Tinn-R GUI/Editor for R Environment Implements a set of customized functions, adapted from svIDE, svMisc and svIO packages of Philippe Grosjean, necessary to Tinn-R GUI/Editor for R environment

Re: [R] package:svMisc

2009-10-29 Thread Philippe Grosjean
A new version of svMisc was send today to CRAN. It should be available soon for R 2.10. Best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems

Re: [R] svDialogs

2009-10-02 Thread Philippe Grosjean
Hello, Now, the *bundle* SciViews has disappeared from CRAN, but the *package* svDialogs is still there. Best, Philippe ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems

Re: [R] Turning points in a series

2009-09-17 Thread Philippe Grosjean
] # Get dates for peaks only dat$date[extract(tp, no.tp = FALSE, peak = TRUE, pit = FALSE)] # Etc... Best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems

Re: [R] Google's R Style Guide

2009-08-29 Thread Philippe Grosjean
Max Kuhn wrote: Perhaps this is obvious, but Ive never understood why this is the general convention: An opening curly brace should never go on its own line; I tend to do this: f - function() { if (TRUE) { cat(TRUE!!\n) } else { cat(FALSE!!\n) } } (I don't usually

[R] [Fwd: Re: Video demo of using svSocket with data.table]

2009-08-27 Thread Philippe Grosjean
20:34:19 +0100 From: Matthew Dowle mdo...@mdowle.plus.com Reply-To: Matthew Dowle mdo...@mdowle.plus.com To: Philippe Grosjean phgrosj...@sciviews.org, Romain Francois romain.franc...@dbmail.com References: h6kcod$5e...@ger.gmane.org 4a8e632d.6060...@sciviews.org4a8e6af1.9060...@dbmail.com

Re: [R] Video demo of using svSocket with data.table

2009-08-21 Thread Philippe Grosjean
of svSocket with browser()... But that's another story, because svSocket does not work nicely with browser() for the moment. All the best, Philippe ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology

Re: [R] Video demo of using svSocket with data.table

2009-08-21 Thread Philippe Grosjean
of it, since the socket runs on a different loop. or maybe you can add something that feeds the R main loop, but I'm not sure this is possible unless you embed R ... Romain On 08/21/2009 11:04 AM, Philippe Grosjean wrote: Hello Matthew and all R-UseRs, You video demo is very nice. This suggests

Re: [R] Wiki down?

2009-07-03 Thread Philippe Grosjean
Yes, it is known. It is a major power supply fealure during all night... and UPS were exhausted. The site is now back again. Sorry for the inconvenience. Best, Philippe Grosjean Mario Valle wrote: From yesterday I cannot connect anymore to wiki.r-project.org Is the problem known? Thanks

Re: [R] What command lists everything in a package?

2009-07-03 Thread Philippe Grosjean
If you want a quick overview of a package (not just the name of the objects), you can also do: library(help = zoo) Duncan Murdoch wrote: On 7/3/2009 1:21 PM, Mark Knecht wrote: Hi, Two easy questions I'm sure. 1) As an example if I use the code require(zoo) then once it's loaded is

Re: [R] timer in R?

2009-07-01 Thread Philippe Grosjean
after'. Best, Philippe Grosjean __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible

Re: [R] a proposal regarding documentation

2009-06-15 Thread Philippe Grosjean
pages, with full-text search ability! Best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons-Hainaut University, Belgium

Re: [R] a proposal regarding documentation

2009-06-15 Thread Philippe Grosjean
package discussed earlier in this mailing list. Best, Philippe Grosjean Gabor Grothendieck wrote: In PHP and also in MySQL the manual has a wiki capability so that users can add notes at the end of each page, e.g. http://www.php.net/manual/en/functions.variable-functions.php http://dev.mysql.com

Re: [R] a proposal regarding documentation

2009-06-15 Thread Philippe Grosjean
. PhG Best, baptiste Philippe Grosjean wrote: Ironically, this function is present since the beginning, although a little buggy. If you try this in R on a computer that is connected to the Internet: wikihelp - function(topic) browseURL(paste(http://wiki.r-project.org/rwiki/rhelp.php?id

Re: [R] a proposal regarding documentation

2009-06-15 Thread Philippe Grosjean
Medical Center 10 North Greene Street GRECC (BT/18/GR) Baltimore, MD 21201-1524 (Phone) 410-605-7119 (Fax) 410-605-7913 (Please call phone number above prior to faxing) Philippe Grosjean phgrosj...@sciviews.org 6/15/2009 4:42 AM Ironically, this function is present since the beginning, although

Re: [R] a proposal regarding documentation

2009-06-15 Thread Philippe Grosjean
Sorry, after a second request, I got the ==Rwiki file not found!== again. Obviously, I have to solve this bug first! PhG Philippe Grosjean wrote: John Sorkin wrote: R 2.8.1, Firefox 3.0.11, windows XP Philippe, I suspect there are more substantial problems with the link to the WIKI then you

Re: [R] a proposal regarding documentation

2009-06-14 Thread Philippe Grosjean
at User!2009 to discuss evolution of the R Wiki, in particular, targeting collaborative writing of *good quality* documentation. Best, Philippe Grosjean [...] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do

Re: [R] Cross-platforms solution to export R graphs

2009-04-11 Thread Philippe Grosjean
..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons-Hainaut University, Belgium ( ( ( ( ( .. Liviu

Re: [R] Cross-platforms solution to export R graphs

2009-04-11 Thread Philippe Grosjean
Liviu Andronic wrote: Hello, On Thu, Apr 9, 2009 at 3:04 PM, Philippe Grosjean phgrosj...@sciviews.org wrote: Cross-platforms solution to export R graphs There is playwith, and latticist, which seem cross-platform (binaries available for both MacWin). rattle uses latticist. Yes, right

Re: [R] Cross-platforms solution to export R graphs

2009-04-11 Thread Philippe Grosjean
Liviu Andronic wrote: On Sat, Apr 11, 2009 at 3:20 PM, Philippe Grosjean phgrosj...@sciviews.org wrote: format (PDF) to another one (SVG). In Inkscape, you use File - Open... for the first step, and File - Save as... for the second. Since it is a vector format, your graph should not look

Re: [R] Cross-platforms solution to export R graphs

2009-04-10 Thread Philippe Grosjean
Emmanuel Charpentier wrote: Le jeudi 09 avril 2009 à 15:04 +0200, Philippe Grosjean a écrit : Hello Rusers, I have worked on a R Wiki page for solutions in exporting R graphs, especially, the often-asked questions: - How can I export R graphs in vectorized format (EMF) for inclusion in MS

Re: [R] Cross-platforms solution to export R graphs

2009-04-10 Thread Philippe Grosjean
. Obviously, further experimentation is required here. Best, PhG Philippe Grosjean wrote: Emmanuel Charpentier wrote: Le jeudi 09 avril 2009 à 15:04 +0200, Philippe Grosjean a écrit : Hello Rusers, I have worked on a R Wiki page for solutions in exporting R graphs, especially, the often-asked

[R] Cross-platforms solution to export R graphs

2009-04-09 Thread Philippe Grosjean
. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons-Hainaut University, Belgium ( ( ( ( ( .. __ R-help@r-project.org mailing list https://stat.ethz.ch

Re: [R] Help with Scviews

2009-03-19 Thread Philippe Grosjean
version, and also, with Linux and Mac OS X in addition to Windows, the only OS supported by the old version. Please, update. Thanks, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical

Re: [R] Help with Scviews

2009-03-19 Thread Philippe Grosjean
to be installed to run/. No. Best, PhG Once again thanks for the help. Regards Steve - Original Message - From: Philippe Grosjean phgrosj...@sciviews.org To: Steve Sidney sbsid...@mweb.co.za Cc: r-help@r-project.org Sent: Thursday, March 19, 2009 11:19 AM Subject: Re: [R] Help

Re: [R] Problem with lmer and wiki example

2009-02-13 Thread Philippe Grosjean
, or the code cited in the wiki page (in CC) provide some explanation to this? Corrections/updates of the wiki page so that it reflects latest lmer() version would be also very much appreciated. All the best, Philippe Grosjean Just in case: R.Version() $platform [1] i386-apple-darwin8.11.1 $arch [1

Re: [R] Test Driven Development in R

2009-02-02 Thread Philippe Grosjean
Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons-Hainaut University, Belgium ( ( ( ( ( .. Tobias

Re: [R] Interface to open source Reporting tools

2009-01-15 Thread Philippe Grosjean
Dieter Menne wrote: srinivasa raghavan srinivasraghav at gmail.com writes: I am interested to generate dashboard and reports based on data from MS Access. These reports need to be posted on a weekly basis to the web. The reporting interface should provide facilities for what if scenarios.

Re: [R] R package tests

2009-01-15 Thread Philippe Grosjean
it by: install.packages(svUnit, repos=http://R-Forge.R-project.org;) These is a vignette associated with svUnit: vignette(svUnit) Note that RUnit and svUnit are test suite code compatible, but they use very different mechanisms internally. Best, Philippe Grosjean

Re: [R] R badly lags matlab on performance?

2009-01-04 Thread Philippe Grosjean
..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons-Hainaut University, Belgium ( ( ( ( ( .. Stefan Grosse wrote: I don't have octave (on the same

Re: [R] editor for MacOS X

2008-11-28 Thread Philippe Grosjean
Hello, There is also Komodo Edit + SciViews-K (http://www.sciviews.org/SciViews-K), rather close to Tinn-R functionnalities. Please; note that SciViews-K is not compatible yet with Komodo 5.0 and you must install version 4.4. Best, Philippe Grosjean

Re: [R] is there any way to run R method as a background process from R interface

2008-11-07 Thread Philippe Grosjean
, or redo it every xxx ms. This is a little bit more complicate. I have success using the tcltk package and the 'after' Tcl function. Best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean

Re: [R] Including graphics files in MS office / open office

2008-11-06 Thread Philippe Grosjean
by OpenOffice. There are some limitations of XFig with R graphs, see ?xfig. Best, Philippe ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons-Hainaut University, Belgium

Re: [R] Dream of a wiki GUI for R

2008-10-23 Thread Philippe Grosjean
functions. One of them would be a function to extract R code from given wiki pages in a text editor. Then, the user could run this code while keeping full control of the way the code is executed (locally, on his machine). Best, Philippe Grosjean

Re: [R] What editors can I get R in Mac OS X to talk to?

2008-10-23 Thread Philippe Grosjean
... and Komodo Edit with the SciViews-K plugin installed (http://www.sciviews.org/SciViews-K). Best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems

Re: [R] TINN-R's R Explores - Available for other editors?

2008-10-21 Thread Philippe Grosjean
that are already finalized in two Universities. The priority is also on the documentation that is still lacking currently. All the best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology

[R] R 2.7.2 upgrade in Ubuntu, tcltk does not work any more

2008-10-06 Thread Philippe Grosjean
Hello, I had no problems running R with tcltk until the recent upgrade to R-2.7.2-2gustsy1 (I use Ubuntu 7.10 Gutsy Gibbon). Since the upgrade from R-2.7.2-1, I got this error (see hereunder). Obviously, I have now a problem with tcltk-related .so files. What should I do? Thanks. Philippe

[R] Graph in vector format to OpenOffice

2008-10-05 Thread Philippe Grosjean
file produced by R into .svm, .dxf, etc... but without success. PhG -- ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons-Hainaut University, Belgium

Re: [R] Dream of a wiki GUI for R

2008-09-29 Thread Philippe Grosjean
it to me). Best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons-Hainaut University, Belgium

Re: [R] Opening R from Tinn without setting directory each time

2008-08-06 Thread Philippe Grosjean
of the installer's questions). Best, Philippe Grosjean Paul Chatfield wrote: Hi - I can access R from Tinn-R by going to Options-Main-Application/R and setting the search path, but each time I exit Tinn-R I have to redefine the search path. Is there no way of fixing that directory as default? I

Re: [R] viewing data in something similar to 'R Data Editor'

2008-08-02 Thread Philippe Grosjean
. Something like ?addTaskCallback, but registering an R function that is to be called *before* a top-level task is run would be wonderful (???addTaskStart). Best, Philippe Grosjean P.S.: this would solve also another problem we have for some GUIs: to know if R is busy processing commands

Re: [R] Change language in Rcmdr

2008-07-07 Thread Philippe Grosjean
Hello, As far as I know, Rcmdr is already translated in French. It is thus just a question of switching R to French. Best, Philippe Grosjean Duncan Murdoch wrote: Schleuh wrote: Hello every R-User, I would like to translate Rcmdr menu items to French (by example). How can I do

Re: [R] SciViews GUI

2008-07-05 Thread Philippe Grosjean
. Best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons-Hainaut University, Belgium

Re: [R] R perfomance question !!!

2008-06-19 Thread Philippe Grosjean
at the svSocket or Rpad packages for examples of use in R). Best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons-Hainaut University

Re: [R] R perfomance question !!!

2008-06-19 Thread Philippe Grosjean
at the svSocket or Rpad packages for examples of use in R). Best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons-Hainaut University

Re: [R] Quartile regression question

2008-06-13 Thread Philippe Grosjean
Hello, Look at package quantreg. Philippe Grosjean Ranney, Steven wrote: I have data that looks like lake,loglength,logweight 1,2.369215857,1.929418926 1,2.426511261,2.230448921 1,2.434568904,2.298853076 1,2.437750563,2.298853076 1,2.442479769,2.230448921 1,2.445604203,2.356025857

Re: [R] svIDE and Tinn-R

2008-05-19 Thread Philippe Grosjean
Hello, This does not seem to be something in the svIDE package, but something send by Tinn-R to R through the DDE connection for the first two warnings. I'll eliminate the last one for next version of the package. Best, Philippe Grosjean Patrick Giraudoux wrote: Probably an old moon since

[R] R is a virus, spyware or malware (gasp!)

2008-05-18 Thread Philippe Grosjean
After a search session in Google, I found this page: http://www.prevx.com/filenames/X1993788672854780728-0/RGUI.EXE.html which classifies Rgui.exe (clearly stated as R for Windows GUI front-end) in a database of virus, spyware and malware! No comments! Philippe Grosjean

Re: [R] R benchmarking program

2008-05-14 Thread Philippe Grosjean
Martin Maechler wrote: PhGr == Philippe Grosjean [EMAIL PROTECTED] on Tue, 13 May 2008 16:10:15 +0200 writes: PhGr Hello, PhGr I did this bechmark test. Perhaps is it a good oppotunity to rewrite it PhGr and make it compatible with R 2.7.0, David? I'll not really rewrite

Re: [R] R benchmarking program

2008-05-13 Thread Philippe Grosjean
Hello, I did this bechmark test. Perhaps is it a good oppotunity to rewrite it and make it compatible with R 2.7.0, David? Best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical

Re: [R] read variable global in R tcltk

2008-04-22 Thread Philippe Grosjean
in Tcl, start their names with '::', like '::myglobalvar', if you like. Best, Philippe Grosjean Handayani Situmorang wrote: I have any problem with my code. I build a small GUI in R with tcltk package. the proolem is I don't understand how to make a variable value can be read by R from

[R] Vector format importation from R to OpenOffice

2008-04-22 Thread Philippe Grosjean
format)! Yet, some experimentation with pstoedit numerous formats and options before getting the best import of R graph into OpenOffice remains to be done... Best, Philippe Grosjean P.S.: if someone got time, it would be nice to put this on the R Wiki... Agustin Lobo wrote: Just in case you

Re: [R] Stopping a function execution automatically after a given time

2008-04-02 Thread Philippe Grosjean
You should look at AutoIt or Autohotkey for this. Best, Philippe Grosjean Duncan Murdoch wrote: On 4/2/2008 12:00 PM, Lukas Rode wrote: Dear Bert and Mel, thanks for your help, but I'm afraid this doesn't solve my problem. As I wrote in my previous mail (cf quote below) in most cases I

Re: [R] how can I reorder a dendrogram?

2008-03-20 Thread Philippe Grosjean
- reorder(dendro, weights, agglo.FUN=mean) plot(ddd) unlist(ddd) # [1] 4 2 3 1 5 13 14 15 11 12 10 7 9 6 8 unlist(dendro) # [1] 10 7 9 6 8 13 14 15 11 12 4 2 3 1 5 Best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof

Re: [R] Table of basic descriptive statistics like SPSS

2008-03-18 Thread Philippe Grosjean
Jim Lemon wrote: [EMAIL PROTECTED] wrote: Dear list readers, I want to: 1. Get a table of basic descriptive statistics for my variables with the variable names one below the other like SPSS descriptive statistics: Varname N Min Max Mean SD x x xx x xxx x x xx

Re: [R] Transfer Crosstable to Word-Document

2008-02-21 Thread Philippe Grosjean
Yes, but it is a very bad practice to name a file with .xls extension that is not in Excel file format (here, a tab-separated ASCII file)! Best, Philippe Grosjean __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE

Re: [R] Tinn-R not working well with latest R

2008-02-14 Thread Philippe Grosjean
to test this with Tinn-R. Could you give me more infos about the great features in Tinn-R that stop working in R 2.6.2, please? Best, Philippe Grosjean ..°})) ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical

Re: [R] Return Value of TCl/Tk window in R

2007-12-28 Thread Philippe Grosjean
res - tkmessageBox(title = test,message = Continue?, +icon =question, type = okcancel) if (tclvalue(res) == ok) 1 else 2 Happy new year! Philippe Grosjean Richard Müller wrote: Hello, I have the TCl/Tk command tkmessageBox(titel=,message=x,icon=question,type=okcancel) in my R

  1   2   >