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

2015-01-31 Thread Philippe Grosjean
43.455 148.6695 1203.292 100 Best, Philippe Grosjean > On 31 Jan 2015, at 09:39, Rolf Turner 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,

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

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

2014-09-11 Thread Philippe GROSJEAN
On 11 Sep 2014, at 08:24, PIKAL Petr 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 >> a[-c(0,1,3)

[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-27 Thread Philippe Grosjean
On 28 Mar 2014, at 00:57, Duncan Murdoch 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 values it has

Re: [R] delayedAssign list members

2014-03-04 Thread Philippe Grosjean
ill encounter many other surprises. Take care, 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 forge

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 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 to check

Re: [R] shapiro.test

2014-02-21 Thread Philippe Grosjean
, what fraction 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 too

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 wrote: > Hi All > > I am having problem running the 'attributes' command to set a attribute on > each col

Re: [R] memory use of copies

2014-01-29 Thread Philippe GROSJEAN
copying the other elements of the list. Best, Philippe ..<°}))><.... ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons University, Belgium ( ( ( ( ( ...

Re: [R] bug in rle?

2014-01-08 Thread Philippe Grosjean
;- rle2(ord)) ## Inverse.rle() does 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 wrote: > Thanks Bill: > > Personally, I don't need it. Once Brian made me aware

Re: [R] Package dependencies in building R packages

2013-12-31 Thread Philippe Grosjean
On 30 Dec 2013, at 20:01, Axel Urbiz 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 survival of the sa

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

2013-10-10 Thread Philippe Grosjean
in front of your code. Here 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 __

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

2013-09-23 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 wrote: > I have been deve

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 fa

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 ..<¡}))>< ) ) ) ) ) ( ( ( ( (

Re: [R] A little exercise in R!

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

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
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, and

Re: [R] Missing datasets (2.13.1)

2011-08-15 Thread Philippe Grosjean
'ToothGrow' 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

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

2010-09-08 Thread Philippe Grosjean
IXct")) "ok" else "not ok" or, by installing the "operators" package, a less conventional, but cleaner code: > install.packages("operators") > library(operators) > if (Sys.time() %of% "POSIXct"

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. wrote: Hi, I wanted to creat

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 wrote: I'm experimenting using R as a report writer. I'm told LaTex is the destination for my quest. But ?latex() gives m

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 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 ?foo() will always return a

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

2010-08-15 Thread Philippe Grosjean
TRUE TRUE Hope that helps, Sam On Sun, Aug 15, 2010 at 5:32 AM, Philippe Grosjean 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&q

[R] as.logical(factor) behaviour

2010-08-15 Thread Philippe Grosjean
grDevices utils datasets methods base Thanks, Philippe -- ..<°}))>< ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (N

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 on

Re: [R] OOP and passing by value

2010-06-09 Thread Philippe Grosjean
generics like "Data<-" 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

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-06 Thread Philippe Grosjean
On 05.06.2010, at 19:52, 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

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

2010-06-05 Thread Philippe Grosjean
command+t stuff is really an advantage over 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

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 mom

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

2010-04-27 Thread Philippe Grosjean
should 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 ) ) ) ) ) ( (

Re: [R] GUI /IDE

2010-03-30 Thread Philippe Grosjean
s code. As a second bonus: rather easy to activate code folding on named regions too. This is put on my "to do" list! Best, Philippe ......<°}))>< ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Num

Re: [R] rpad ?

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

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 U

Re: [R] Three most useful R package

2010-03-03 Thread Philippe Grosjean
: 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 and provide commented

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 ar

Re: [R] Emacs vs Eclipse vs Rcmdr

2010-01-04 Thread Philippe Grosjean
) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons University, Belgium ( ( ( ( ( .. Barry Rowlingson wrote: On Sun, Jan 3, 2010 at 10:59 PM, Charlotte Maia wrote: I'

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 E

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 Aquati

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 Aquati

Re: [R] Turning points in a series

2009-09-17 Thread Philippe Grosjean
lldates # Get dates for "informative" turnpoints (5%) only (see ?turnpoints) alldates[tp$proba < 0.05] # Get dates for peaks only dat$date[extract(tp, no.tp = FALSE, peak = TRUE, pit = FALSE)] # Etc... Best, Philippe Grosjean ..<°}))><.

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 usu

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

2009-08-27 Thread Philippe Grosjean
20:34:19 +0100 From: Matthew Dowle Reply-To: Matthew Dowle To: Philippe Grosjean , Romain Francois References: <4a8e632d.6060...@sciviews.org><4a8e6af1.9060...@dbmail.com> <4a8e9e7d.9070...@sciviews.org> Hi Philippe & Romain, Thanks - interesting discussion on the l

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

2009-08-21 Thread Philippe Grosjean
n take advantage 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

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

2009-08-21 Thread Philippe Grosjean
on 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 ) ) ) ) ) ( ( ( ( (

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 t

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] timer in R?

2009-07-01 Thread Philippe Grosjean
;after", "cancel", .id) # To cancel the currently scheduled task Tcl is rather simple :-)... and everything is documented in 'man after'. Best, Philippe Grosjean __ R-help@r-project.org mailing list https://stat.ethz.

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-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 6/15/2009 4:42 AM >>> Ironically, this function is present since the beginning, although a little bugg

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/r

Re: [R] a proposal regarding documentation

2009-06-15 Thread Philippe Grosjean
ld be merged probably in the RSiteSearch 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/e

Re: [R] a proposal regarding documentation

2009-06-15 Thread Philippe Grosjean
sted on the wiki... or that link to a personal wiki engine where everybody could add its own comments to the help pages, with full-text search ability! Best, Philippe Grosjean ......<°}))>< ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) )

Re: [R] a proposal regarding documentation

2009-06-14 Thread Philippe Grosjean
a dinner in Rennes 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/mailma

Re: [R] Most used R editors

2009-06-02 Thread Philippe Grosjean
Ronggui Huang wrote: Yes, Tinn-R is great for windows users. However, if you work under different OS, it would be great to have an OS-independent editor. Try SciViews-K (http://www.sciviews.org/SciViews-K). Works the same on Windows, Mac OS X and Linux. Best, Philippe Ronggui 2009/6/2 Bos

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 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 pixelised. Yes, t

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 wrote: "Cross-platforms solution to export R graphs" There is playwith, and latticist, which seem cross-platform (binaries available for both Mac&Win). rattle uses latticist. Yes, right. Rcmdr c

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 ( ( ( ( (

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

2009-04-10 Thread Philippe Grosjean
is then easier to use PNG files. 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 grap

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

[R] Cross-platforms solution to export R graphs

2009-04-09 Thread Philippe Grosjean
-- ..<°}))>< ) ) ) ) ) ( ( ( ( ( Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons-Hainaut University, Belgium ( ( ( ( ( .. __ R-help@r-project.org mailing l

Re: [R] Help with Scviews

2009-03-19 Thread Philippe Grosjean
be installed to run/. No. Best, PhG Once again thanks for the help. Regards Steve - Original Message - From: "Philippe Grosjean" To: "Steve Sidney" Cc: Sent: Thursday, March 19, 2009 11:19 AM Subject: Re: [R] Help with Scviews Hello Sidney,

Re: [R] Help with Scviews

2009-03-19 Thread Philippe Grosjean
ws-K is compatible with current R 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 ..<°}))><.... ) ) ) ) ) ( (

Re: [R] Problem with lmer and wiki example

2009-02-13 Thread Philippe Grosjean
degrees of freedom that are different 3/10 in my case, against 2/9 in yours and in the wiki page! Could the authors of lmer(), and/or of the wiki page, 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 l

Re: [R] Test Driven Development in R

2009-02-02 Thread Philippe Grosjean
ise, I plan to submit an abstract about svUnit to User!2009 soon. All the best, Philippe Grosjean ..<°}))>< ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( (

Re: [R] R package tests

2009-01-15 Thread Philippe Grosjean
: 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 mechanis

Re: [R] Interface to open source Reporting tools

2009-01-15 Thread Philippe Grosjean
Dieter Menne wrote: srinivasa raghavan 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. Is it possible

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

2009-01-04 Thread Philippe Grosjean
ction with the R community this time ;-) Best, Philippe ......<°}))>< ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) ) ) ) Mons-Hainaut University, Belgium ( ( ( ( ( ..

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

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

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

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 Aquati

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

2008-10-23 Thread Philippe Grosjean
ne 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 Gro

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

2008-10-21 Thread Philippe Grosjean
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 ) ) ) ) ) ( ( ( ( (

[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

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

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

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

2008-08-06 Thread Philippe Grosjean
he end 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 tha

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 it

Re: [R] SciViews GUI

2008-07-05 Thread Philippe Grosjean
. 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
d examples of use, or look at the svSocket or Rpad packages for examples of use in R). Best, Philippe Grosjean ..<°}))>< ) ) ) ) ) ( ( ( ( (Prof. Philippe Grosjean ) ) ) ) ) ( ( ( ( (Numerical Ecology of Aquatic Systems ) ) )

Re: [R] R perfomance question !!!

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

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

[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! Philipp

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,

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 ) ) ) ) ) ( ( ( ( (

[R] Vector format importation from R to OpenOffice

2008-04-22 Thread Philippe Grosjean
han SVM (the OpenOffice vector 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... Agusti

Re: [R] read variable global in R tcltk

2008-04-22 Thread Philippe Grosjean
its value [1] "1" To make sure you create global variables 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 > packag

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 i

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

2008-03-20 Thread Philippe Grosjean
, 6.0, 6.0, 6.0, 6.0, 6.0, 4.0, 4.0, 4.0, 4.0, 4.0) ddd <- 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 1

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 >> xx

Re: [R] Transfer Crosstable to Word-Document

2008-02-21 Thread Philippe Grosjean
xcel > file. > If you're already running excel and choose file>open, you will get a dialog > box, where you have to click complete or OK. > > > Bart Yes, but it is a very bad practice to name a file with .xls extension that is not in Excel file format (here,

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

2008-02-14 Thread Philippe Grosjean
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 ) ) ) ) ) ( (

  1   2   >