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