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”

PDF form Rstudio
Ulrik Stervbo · Feb 25, 2016 · r-help

My understanding is that Sweave also depends on LaTeX to generate pdfs, so I am not sure Sweave is the solution. On Fri, 26 Feb 2016 at 05:52 Frederic Ntirenganya <ntfredo at gmail.com> wrote: > Hi, > > If you are...

Help with R script
Ulrik Stervbo · Jul 13, 2017 · r-help

Hi Vijayan, one way going about it *could* be this: library(dplyr) library(tidyr) library(purrr) ex_dat <- c("FName: fname1", "Fval: Fval1.name1", "Fval: ", "FName: fname2", "Fval: Fval2.name2", "FName: fname3") data.frame(x = ex_dat) %>% separate(x, c...

plotting longitudinal data with ggplot
Ulrik Stervbo · Mar 11, 2017 · r-help

You need to set the aesthetic 'group' to something meaningful, probably ID in this case. HTH Ulrik On Fri, 10 Mar 2017, 19:30 Rayt Chiruka, <rtchiruka at gmail.com> wrote: > i am trying to convert a dataset from wide...

graph: horizontal bar reflecting number of data
Ulrik Stervbo · Jul 15, 2016 · r-help

Dear Dagmar, must the numberdata be character? Here are tew solutions. The first solution summarise before plotting and the second does everything in the plot library("dplyr") library("ggplot2") datframe <- data.frame(Name=c("Kati","Kati","Kati","Leon","Leon","Leon...

Importing function that is previously imported by other package
Ulrike Grömping · Sep 6, 2013 · r-devel

Dear developeRs, I encounter the following problem: in the current version of my package FrF2, certain calls to a functioni do not work when package combinat is loaded, because function combn from combinat masks the function from utils that my...

problem: the id of the data set
Ulrik Stervbo · Jun 9, 2016 · r-help

How do you merge the two data.frames? Could it be that you make an outer join? HTH Ulrik On Thu, 9 Jun 2016 at 19:45 Michael Dewey <lists at dewey.myzen.co.uk> wrote: > Perhaps I do not...

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

Dear all, (and John, please don't feel obliged to react, I know that you have no time!), I am trying to figure out how to access individual tabs on a notebook. I have six tabs, created with the following...

Help with R-Calling forth csv.
Ulrik Stervbo · Apr 16, 2018 · r-help

There are plenty of options for reading csv files. For built-in solutions look at ?read.csv or at read_csv from the package reader. If the measurements are ordered in columns rather than in rows, reading the data can...

Selecting rows and columns of a data frame using relational operators
Ulrik Stervbo · Feb 27, 2017 · r-help

Hi Tunga, The function subset() is probably what you are looking for. You might also want to look at a tutorial to understand the R syntax. In addition, calling your data data is not a good idea because of the...

Error-Mapping
ulrike.grimm at uni-leipzig.de · Jul 25, 2017 · r-sig-geo

Dear all, I am a R- starter and not really experienced, but I try my best. For my PhD thesis I want to create an error map of a palaeo-relief and I found the instruction from Tomislav Hengl 2009...

a new df with one combined column
Ulrik Stervbo · Jun 29, 2016 · r-help

Then I don't understand what you want to achieve. If you want to combine the two columns you can do c(df1$col1, df2$col2) Ulrik <chalabi.elahe at yahoo.de> schrieb am Mi., 29. Juni 2016 15:45...

disturbed legend in ggplot2
Ulrik Stervbo · Sep 27, 2017 · r-help

Hi Troels, Try to move the size argument out of the aesthetic. Best wishes, Ulrik On Mi., 27. Sep. 2017, 08:51 Troels Ring <tring at gvdnet.dk> wrote: > Dear friends - below is a subset of a much larger material...

R CMD check: problems possibly from mapply?
Ulrike Grömping · Mar 14, 2006 · r-help

Dear expeRts, I am trying to wrap up a package "utilities" (for my internal use). After adding a function datNAtreat that uses mapply, R CMD check gives WARNINGs for "S3 generic/method consistency", "checking replacement functions" and?"checking foreign function...

Documenting data
Ulrik Stervbo · Jun 30, 2016 · r-help

Vince Buffalo has covers this nicely in his book "Bioinformatics Data Skills". The original data should stay the original data is immutable and Vince then suggests that you have a text file in your data directory where you explain where...

Error in FrF2 example on Mac OS
Ulrike Grömping · Mar 24, 2009 · r-devel

Petr Savicky wrote: > > On Tue, Mar 24, 2009 at 02:45:57PM +0100, Uwe Ligges wrote: >> >gives the custom error message "nruns must be a power of 2.", which is >> >generated in the first check within function FrF2: >> > >> > if (!is...

Binomial PCA Using pcr()
Ulrik Stervbo · Aug 19, 2020 · r-help

Hi Prasad, I think this might be a problem with the package, and you can try to contact the package author. The error seem to arise because the pcr() cannot find the 'negative-binomial' distribution ``` library(qualityTools) x <- rnbinom(500...

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

Am 02.02.2021 um 02:38 schrieb Duncan Murdoch: > On 01/02/2021 5:03 p.m., Ulrike Gr?mping wrote: >> Dear package developeRs, >> >> under the Fedora clang checks, I find the note >> >> "Undeclared packages ?FrF2?, ?DoE.wrapper?, ?sfsmisc...

Unable to Load package Rcmdr after installation
Ulrik Stervbo · Mar 9, 2017 · r-help

Hi Paul, what fails and how? What did you do from the time the package worked until is didn't? Did you update packages? Which packages are you trying to load? Best Ulrik On Thu, 9 Mar 2017 at 18...

Time delay function or plot animation
Ulrike Grömping · Dec 13, 2005 · r-help

Tobias, thanks to you and others, who made the same suggestion. This is exactly what I was looking for, Sys.sleep(0.1) does the job much more quietly than my previous solution ... Regards, Ulrike ---------- Original Message ----------- From: Tobias Verbeke...

[Q] It it possible to create the data frame only non-zero data column?
Ulrik Stervbo · Jan 8, 2016 · r-help

Could you use rowsum and select rows larger then 0? Something like: result[rowsum(as.matrix(result) > 0, ] On Fri, 8 Jan 2016 at 18:00 Hiroyuki Sato <hiroysato at gmail.com> wrote: > Hello all. > > I re-post this question...

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