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.

362 results for “from:ulrike”

Misleading sentence in documentation of data.frame (PR#13850)
Ulrike Grömping · Jul 24, 2009 · r-devel

Full_Name: Ulrike Groemping Version: 2.9.0 OS: Windows Submission from: (NULL) (84.190.173.190) The documentation for data.frame contains the sentence "A data frame is a list of variables of the same length with unique row...

Major update to package relimpo: Version 2.0
Ulrike Grömping · Nov 23, 2007 · r-help

Dear userRs, Version 2.0 of package relaimpo is on CRAN (and on my homepage with an additional metric for non-US users). It contains several major improvements: - usage of factors - incorporation of interactions (for metric lmg only) - incorporation of...

R Listen to a Web GUI
Ulrik Stervbo · Aug 10, 2016 · r-help

Hi Glenn, Shiny and shinydashboards might be what you are looking for. Best, Ulrik On Wed, 10 Aug 2016, 22:03 Glenn Schultz, <glenn at kdsglobal.com> wrote: > All, > > I need to create a function that listens to a web...

Bug in calculation of overdispersion for quasibinomial grouped
Ulrike Grömping · Apr 26, 2010 · r-devel

A quick addition: SAS PROC LOGISTIC with option SCALE=PEARSON only calculates what R calculates in the grouped version; this is forced by refusing to calculate a FI estimate for ungrouped data, unless an AGGREGATE option is specified. Apparently, SAS...

[R-pkg-devel] Unfortunate function name generic.something
Ulrike Grömping · May 5, 2023 · r-package-devel

Dear package developeRs, I am working on fixing some notes regarding package DoE.base. One note refers to the function levels.no and complains that the function is not documented as a method for the generic function levels. Actually, it...

Error in doc_parse_file
Ulrik Stervbo · Jan 7, 2017 · r-help

Hi Maicel, Please keep the list in CC. I can't help with read_xml but perhaps someone on the list can. Best, Ulrik On Fri, 6 Jan 2017, 19:03 Maicel Monzon, <maicel.monzon at gmail.com> wrote: > Hi...

Error while integrating R with netbeans using rJava
Ulrik Stervbo · Jan 28, 2016 · r-help

Hi Daphne, It seems Java cannot find what it is looking for. I know next to nothing of using rJava but maybe this is helpful: http://binfalse.de/2011/02/20/talking-r-through-java/ Best, Ulrik On Thu, 28...

Create gif from series of png files
Ulrik Stervbo · Feb 14, 2017 · r-help

Hi Shane, Wrong forum. This might be what you are looking for ffmpeg -i %03d.png output.gif Or use the library gganimate. Best Ulrik Shane Carey <careyshan at gmail.com> schrieb am Di., 14. Feb. 2017, 12:08: > Hi...

Exercises for 'Using R'
Ulrik Stervbo · Nov 11, 2006 · r-help

Hello everyone, We have started a very small R study group here in Berlin, Germany. Since we're all relatively new to R we are using 'Using R for Introductory Statistics' by John Verzani (one used that at a course...

Scatterplot of many variables against a single variable
Ulrik Stervbo · Nov 27, 2017 · r-help

ggplot and facets might be useful. Ulrik Ismail SEZEN <sezenismail at gmail.com> schrieb am Mo., 27. Nov. 2017, 14:06: > > > On 27 Nov 2017, at 13:59, Engin YILMAZ <ispanyolcom at gmail.com> wrote: > > > > Dear Berger and Jim > > > > Can...

Nested loop R code
Ulrik Stervbo · Sep 8, 2017 · r-help

Hi Hemant, please write to the r-help list in the future. Look at the cut () function to solve your problem. Also, you have a problem in your example - 5 is placed in two different categories. HTH Ulrik On Fri...

Arranging ggplot2 objects with ggplotGrob()
Ulrik Stervbo · Jul 29, 2020 · r-help

Then this should work: ``` library(ggplot2) library(cowplot) p1 <- ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width)) + geom_point() p2 <- ggplot(iris, aes(x = Petal.Length, y = Petal.Width * 1000)) + geom_point() plot_grid(p1, p2, ncol = 1, align...

How to replace all commas with semicolon in a string
Ulrik Stervbo · May 27, 2016 · r-help

use gsub() On Fri, 27 May 2016 at 17:12 Jun Shen <jun.shen.ut at gmail.com> wrote: > Dear list, > > Say I have a data frame > > test <- data.frame(C1=c('a,b,c,d'),C2=c('g,h...

[R-pkg-devel] Undeclared packages ... in Rd xrefs
Ulrike Grömping · Feb 1, 2021 · r-package-devel

Dear package developeRs, under the Fedora clang checks, I find the note "Undeclared packages ?FrF2?, ?DoE.wrapper?, ?sfsmisc?, ?DoE.MIParray?, ?planor? in Rd xrefs" for my package DoE.base. I understand that package planor has been archived from CRAN; I...

[R-gui] Good Tcl/tk widget reference?
Ulrike Grömping · Sep 16, 2010 · r-sig-gui

Erin, there is one that comes with your R installation, at least if you are on Windows. On my Windoes R 2.11.0, this is the path: C:\Programme\R\R-2.11.0\Tcl\doc\tcltk85.chm Best...

Cannot activate chm help in R 2.10
Ulrike Grömping · Oct 27, 2009 · r-help

Duncan Murdoch-2 wrote: > > Ulrike Groemping wrote: > ... >> My system is Windows XP, German locale computer. On installation, I was >> asked to decide for text or html help and chose html (there was no radio >> button for chm help). > ... > > If you...

Reason for difference in singular value decomposition produced by function La.svd (via prcomp)?
Ulrike Grömping · Aug 8, 2013 · r-help

Dear expeRts, I have run some simulations under R 2.15.1 on a Mac, and I have rerun a sample of them under R 3.0.1 on Windows (and also for comparison under R2.14.1 on Windows...

define a list with names as variables
Ulrik Stervbo · Aug 4, 2017 · r-help

Hi Giovani, I would create an unnamed list and set the names after. Best, Ulrik On Fri, 4 Aug 2017 at 12:08 Giovanni Gherdovich <g.gherdovich at gmail.com> wrote: > Hello, > > I'm having troubles defining a list where...

R package
Ulrik Stervbo · Mar 23, 2017 · r-help

Hi Elahe, maybe the us.cities() in the maps package is what you look for. HTH Ulrik On Thu, 23 Mar 2017 at 11:34 Elahe chalabi via R-help <r-help at r-project.org> wrote: > Hi all, > > I...

[R-gui] tcltk notebook question: Accessing tabs in ttknotebooks
Ulrike Grömping · May 5, 2009 · r-sig-gui

Dear John, dear all, while John's solution helped nicely for modifying the state of a tab, I am again stuck with selecting a tab. I've managed to capture the tabs numeric id (0-based). But using tkselect or...

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