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”

inverse table
Ulrik Stervbo · Jun 15, 2016 · r-help

Hi Patrizio, maybe there is a more efficient way, but you can loop over rows and columns like this ab.recon <- data.frame() ddd.rownames <- rownames(ddd) ddd.colnames <- colnames(ddd) for(cur.row in ddd.rownames){ for(cur.col...

removing factor values in the main data frame
Ulrik Stervbo · Mar 1, 2016 · r-help

Hi, I think droplevels(df) is what you are looking for. Best wishes, Ulrik On Tue, 1 Mar 2016 at 17:33 hoda rahmati via R-help <r-help at r-project.org> wrote: > Hi all,I have the following...

write.table: adapt end of line
Ulrik Stervbo · Feb 26, 2016 · r-help

You could also use kable from the Knitr package Best, Ulrik On Fri, 26 Feb 2016 at 11:17 Uwe Ligges <ligges at statistik.tu-dortmund.de> wrote: > writeLines(paste(do.call(paste, c(liste, sep=" & ")), "\\\\\\hline"), > con = "empf.csv...

Private environments and/or assignInMyNamespace
Ulrike Grömping · Feb 13, 2013 · r-devel

Milan, I am not closing the dialog, but without the dialog in the search space, I cannot properly refer to it any more using e.g. the Rcmdr function errorCondition. It has been a long time ago that I wrote...

[R-pkg-devel] Change in normal random numbers between R 3.5.3 and R 3.6.0
Ulrike Grömping · May 9, 2019 · r-package-devel

Dear R package authors, I am currently struggling with differences in test results between R versions 3.5.3 and 3.6.0: There are expected ones (from the new behavior of sample(), which can be switched off by RNGkind...

fractional factorial design in R
Ulrike Grömping · Jan 23, 2006 · r-help

>Roberto Furlan wrote: > >Hi, >i need to create a fractional factorial design sufficient to estimate the >main effects. >The factors may have any number of levels, let's say any number from 2 to 6. >I've tried to use...

Paste Funtion Help
Ulrik Stervbo · Feb 4, 2016 · r-help

Hi Shivi, I usually do merge.salaries$name <- paste(merge.salaries$nameFirst, merge.salaries$nameLast) also if merge.salaries[, name:=paste("nameFirst","nameLast")] would work, you would end up with a column full of "nameFirst nameLast". Best, Ulrik On Thu...

How to scale circle sizes in VennDiagram using draw.triple.venn
Ulrik Stervbo · Dec 22, 2016 · r-help

Hi Yung-Chih, This works for me: library(Vennerable) data("StemCell") venn_res <- Venn(StemCell[1:3]) plot(venn_res, doWeights = TRUE) HTH Ulrik On Thu, 22 Dec 2016 at 20:54 Yung-Chih Lai <yungchihlai at gmail.com> wrote...

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

I realize now that the dynamic help is no longer implemented via chm apparently. But nevertheless, the intention is certainly to be able to call help WITH links from within R? What can I do to make that work instead...

Newbie wants to compare 2 huge RDSs row by row.
Ulrik Stervbo · Jan 27, 2018 · r-help

Also, it will be easier to provide helpful information if you'd describe what in your data you want to compare and what you hope to get out of the comparison. Best wishes, Ulrik Eric Berger <ericjberger at gmail.com...

problem with system.file
Ulrik Stervbo · May 22, 2017 · r-help

What is your version of readxl? In my version 1.0, there is no directory called estdata, but there is one called extdata. However, in that directory there is no file called "results.xlsx" Either it was there once and...

Help modifying "aheatmap" or find a new heatmap package
Ulrik Stervbo · Sep 17, 2016 · r-help

I am a huge fan of pheatmap and use it for all my heatmaps. Alternatively you can use ggplot2 and geom_tile Hth Ulrik Jim Lemon <drjimlemon at gmail.com> schrieb am So., 18. Sep. 2016 01:35: > Hi Michael...

Hacked
Ulrik Stervbo · Apr 17, 2018 · r-help

I asked the moderators about it. This is the reply "Other moderators have looked into this a bit and may be able to shed more light on it. This is a "new" tactic where the spammers appear to reply to...

for loop is looping only once
Ulrik Stervbo · Nov 17, 2016 · r-help

Hi Georg, Your for loop iterates over just one value, to get it to work as you intend use for(item in 1:length(kpis)){} HTH Ulrik On Thu, 17 Nov 2016 at 12:18 <G.Maubach at weinwolf.de...

PAM Clustering
Ulrik Stervbo · Jul 10, 2017 · r-help

Hi Sema, read.csv2 use ',' as the decimal separator. Since '.' is used in your file, everything becomes a character which in turn makes pam complain that what you pass to the function isn't numeric. Use read.csv2("data.csv...

Extract from a text file
Ulrik Stervbo · May 30, 2016 · r-help

Hi Val, Take a kook at read.table. If for some reason the file dosen't have the same separator between the columns you can use strsplit after loading the file. This might helpyou along getting data into R: http...

gUnaryUnion does not work on my SpatialPolygonsDataFrame?
Ulrike Grömping · Jul 8, 2015 · r-sig-geo

Dear R-sig-Geos, I am quite new to geographical data in R and also to shape files etc., and I have encountered the following difficulty: After reading a publicly available shape file on recent EU elections in Berlin (link...

Training set in Self organizing Map
Ulrik Stervbo · Jun 1, 2016 · r-help

Hi Elahe, if you look at your subdf, you will see that the column Country - which is not numeric - is still present. You might have other non-number columns, but this I cannot tell. scale expects a numeric matrix. You...

Dataframe with different lengths
Ulrik Stervbo · Jul 29, 2020 · r-help

Hi Pedro, I see you use dplyr and ggplot2. Are you looking for something like this: ``` library(ggplot2) library(dplyr) test_data <- data.frame( year = c(rep("2018", 10), rep("2019", 8), rep("2020", 6)), value = sample(c(1:100...

numerics from a factor
Ulrike Grömping · Mar 16, 2013 · r-devel

Hi Terry, you can use type.convert instead of as.numeric for numbers with decimals: type.convert(levels(factor(1:6/2)), dec=unlist(options("OutDec"))) Best, Ulrike Am 16.03.2013 12:00, schrieb r-devel-request at r...

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