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.

75 results for “from:Yvonnick Noel”

Object oriented programming in R.
Yvonnick Noel · Sep 15, 2010 · r-help

I think you should have a look at the 'proto' package on CRAN. Yvonnick Noel University of Brittany, Rennes France

[R-gui] gWidgetsRGtk2: Problem with gradio handler in a proto object
Yvonnick Noel · May 14, 2011 · r-sig-gui

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-sig-gui/attachments/20110514/ff21ed23/attachment.pl>

window manager interface commands for linux
Yvonnick Noel · Nov 29, 2011 · r-help

> How can i replicate this in Linux: > source(file.choose()) > > > I've tried source(tkgetOpenFile()) but with no luck library(gWidgetsRGtk2) options(guiToolkit="RGtk2") gfile(cont=T) Yvonnick Noel University of Brittany at Rennes Rennes, France

SPSS -> R
Yvonnick Noel · Dec 1, 2011 · r-help

Dear Kristi, > Also. can anyone recommend any resources to help SPSS users learn to things in R? You may want to have a look at the R2STATS package, a simple GUI for linear models. Best, Yvonnick Noel University of Brittany...

installing lme4 and Matrix from R-Forge for R-devel (2.14)
Yvonnick Noel · Oct 3, 2011 · r-sig-mixed-models

Hello, I note there is a problem compiling the Matrix and lme4 packages on R-Forge for R-devel (2.14). Is there a known cause? Thank you. Yvonnick Noel University of Brittany, Rennes France

installing lme4 and Matrix from R-Forge for R-devel (2.14)
Yvonnick Noel · Oct 2, 2011 · r-sig-mixed-models

Hello, I note there is a problem compiling the Matrix and lme4 packages on R-Forge for R-devel (2.14). Is there a known cause? Thank you. Yvonnick Noel University of Brittany, Rennes France

Mandriva Spring 2007 and R
Yvonnick Noel · Jun 6, 2007 · r-help

Jonathan, If you are not willing to use the very last version of R, there is always a RPM package for R under Mandriva, called R-base. So that basically, connected as root, just type: urpmi R-base to install...

Wrong symbol rendering in plots (Ubuntu)
Yvonnick Noel · Jun 5, 2010 · r-help

Hello, I have the very same problem. Plotting code that used to work before I upgraded to Ubuntu Lucid Lynx does not work anymore. For example: plot(1:10) text(6,4,expression(pi)) The 'pi' greek letter appear as...

Plotting expressions with indicies
Yvonnick Noel · May 12, 2003 · r-help

Hello, I would like to plot a series of math symbols on a graph with ordered indicies : expression(delta[1]) expression(delta[2]) etc. Is there a mean to write this in a for loop ? for(i in 1:6...

[R-gui] ghelp in gWidgets
Yvonnick Noel · May 21, 2008 · r-sig-gui

Hello, I note that the following gWidgets code that works under Linux fails under Windows with R-2.7.0 (gWidgets-0.0.27, gWidgetsRGTk2-0.0.33, RGtk2-2.12.5-3): ghelp("anorexia",package="MASS",cont=TRUE) The...

ReInstalling packages
Yvonnick Noel · Jul 16, 2002 · r-help

On Monday 15 July 2002 19:17, you wrote: > Have you installed the readline-dev package? That was the problem. Thank you for your help ! -- Yvonnick Noel Universite de Lille 3 UFR de psychologie -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http...

Replacing backslashes with slashes
Yvonnick Noel · Jan 4, 2006 · r-help

> It would work with > > gsub("\\\\","/","c:\\My Documents\\data.dat") > [1] "c:/My Documents/data.dat" > > which of course is not your case :( Absolutely. What I get from the interface is the string "c:\My Documents\data.dat" and NOT...

How to get family/link information from a fitted glmer model?
Yvonnick Noel · Jun 10, 2010 · r-sig-mixed-models

Hello, Everything's in the subject :-) How could I get information about distribution family and link function programmatically? I tried: family(my.glmer.model) or my.glmer.model at family but this slot doesn't exist. Is there any other...

GTK
Yvonnick Noel · Feb 20, 2012 · r-help

> I am struggling to install GTK+ for Windows 7. RGtk2 needs this > package to load. Does anybody know of a installation file that works? > > GTK+ is automatically installed when you install the RGtk2 package (you'll be asked about it...

Advice on use of R for Generalised Linear Modelling
Yvonnick Noel · Aug 12, 2013 · r-help

Alan, You might want to have a look to the R2STATS package on CRAN. It is a GUI for GLM and GLMM written in GTK (with the use of the nice RGtk2 and gWidgets packages by Michael Lawrence and John...

How to run Shapiro-Wilk test for each grouped variable?
Yvonnick Noel · Apr 12, 2010 · r-help

Dear Iurie, > I want to run Shapiro-Wilk test for each variable in my dataset, each > grouped by variable groupFactor. Note that, at least on a single dependent variable with a grouping variable, a possible simplification may arise when homogeneity...

Solving Systems of Non-linear equations
Yvonnick Noel · Dec 1, 2005 · r-help

On 11/30/05, Scott Story <sstory at montana.edu> wrote: >> I am trying to write a function that will solve a simple system of >> nonlinear equations for the parameters that describe the beta >> distribution (a,b) given the mean...

as.numeric(".1") + SessionInfo
Yvonnick Noel · Jan 24, 2007 · r-help

> >> as.numeric(",1") > NOEL> [1] 0,1 > Instead of the output below, can you please give the full > > sessionInfo() > > output? Here it is: R version 2.4.0 (2006-10-03) i686-pc-linux-gnu locale: fr_FR.UTF-8...

Search a function name in a string
Yvonnick Noel · Jul 3, 2007 · r-help

Hello, I am trying to find a function name in a string that expresses a functional form : > s = "blabla...S(var)...blabla" I would like to detect the pattern "S(*)" in s. I am no guru at regular expressions. Just...

Categorical datasets
Yvonnick Noel · Dec 14, 2000 · r-help

Dear members, I am looking for sample datasets suited to an Introduction to Loglinear Models. Ideally, I would like psychological data with three or four categorical variables. Would someone know of some dataset of this kind? Thank you very much...

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