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.

399 results for “from:Luigi Marongiu”

Doubling time definition package incidence
Luigi Marongiu · Jun 10, 2020 · r-help

The package incidence provides the function fit_optim_split that returns a predicted doubling time in days. Would this be serial interval described in the epidemiology manuals? Thank you

Show only header of str() function
Luigi Marongiu · Sep 2, 2021 · r-help

Hello, is it possible to show only the header (that is: `'data.frame': x obs. of y variables:` part) of the str function? Thank you -- Best regards, Luigi

find maximum values on the density function of a bimodal distribution
Luigi Marongiu · Apr 21, 2014 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20140421/bc1061f4/attachment-0001.pl>

post hoc test to a significant Kruskal-Wallis test package asbio function pairw.kw()
Luigi Marongiu · Oct 21, 2013 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20131022/ff3275e4/attachment.pl>

lattice contourplot: how to change line width?
Luigi Marongiu · Nov 17, 2021 · r-help

Hello, I have generated a contourplot with lattice. How do I set the line width? I tried with: ``` library(lattice) contourplot(Z ~ X*Y, data = df, cuts = 3, panel=function(x,y,...){ panel.contourplot(lty=1, lwd = 3) }) ``` but did...

plot shows exponential values incompatible with data
Luigi Marongiu · Jul 9, 2020 · r-help

Hello, I have these vectors: ``` X <- 1:7 Y <- c(1438443863, 3910100650, 10628760108, 28891979048, 78536576706, 213484643920, 580311678200) plot(Y~X) ``` The y-axis starts at 0e0, but the first value is 1.4 billion. Why the axis does not start...

r kernlab find best cost parameter automatically
Luigi Marongiu · May 26, 2019 · r-help

That giving the best trade between sensitivity and specificity. On Sat, May 25, 2019 at 12:47 AM Abby Spurdle <spurdle.a at gmail.com> wrote: > > > Would be possible to automate the selection of the best <k> value? > > Can you...

Manage time frame package deSolve
Luigi Marongiu · May 26, 2020 · r-help

Hello, I have set a model with deSolve's ode. I have set the time as `period = seq(1, 10, 1)` but the times I get from the ode are like 1, 1.000173... Is it possible to run ode...

Interpreting fa.diagram from package psych
Luigi Marongiu · Sep 10, 2022 · r-help

Hello, I have plotted data from exploratory factor analysis, and I got a graph similar to FIGURE 11 (PAGE 36) of this link file:///home/gigiux/Downloads/An_overview_of_the_psych_package.pdf How do I interpret the figure...

change font size within the panel.text function (package lattice)
Luigi Marongiu · Jul 11, 2015 · r-help

Dear all, I am adding some text to the panels of a graph generated through the lattice function using the argument: xyplot( ..., panel = function(x, y,...) { panel.xyplot(x,y,...) panel.text(0,0,labels=V[panel.number()]) } How can...

Change colour ggiNEXT plot package iNEXT
Luigi Marongiu · Oct 22, 2019 · r-help

Dear all, is it possible to provide custom color to the rarefaction curve of the package iNEXT (ggiNEXT)? If I have these data: ``` library(iNEXT) library(ggplot2) data(spider) out <- iNEXT(spider, q=0, datatype="abundance") ggiNEXT(out, type=1...

add error bars to rarecurve from package vegan
Luigi Marongiu · Oct 21, 2019 · r-help

Hello, I am using the package vegan to generate rarefaction curves with the function rarecurve. Is it possible to add error bars to the plot? I tried to add se = FALSE but it did not work. Also, would it be...

create mean ksvm model
Luigi Marongiu · Oct 23, 2021 · r-help

Hello, I am using the ksvm function from the library kernlab to generate an SVM classification. I am running the model with k-mean cross-validation, thus obtaining different accuracy. Is it possible to merge the different models obtained with...

Rstudio is stuck on chromebook
Luigi Marongiu · Jun 15, 2020 · r-sig-debian

Hello I have installed R version 3.3.3 (2017-03-06) and downloaded rstudio-1.3.959-amd64.deb. I installed it with the right click but when I launch it, the icon have the wait ring and it...

alternative to subset(dataframe, select = - column) in R
Luigi Marongiu · Sep 24, 2021 · r-help

Hello, this is a very simple question but... what is the vector alternative to `subset(dataframe, select = - column)`? I tried with: ``` > x = new[-ID] Error in `[.data.frame`(new, -ID) : object 'ID' not found > x = new[-"ID"] Error in -"ID...

substr gives empty output
Luigi Marongiu · Jan 21, 2018 · r-help

Dear all, I have a string, let's say "testing", and I would like to extract in sequence each letter (character) from it. But when I use substr() I only properly get the first character, the rest is empty (""). What...

How to convert European short dates to ISO format?
Luigi Marongiu · Jun 10, 2020 · r-help

Thank you! On Wed, Jun 10, 2020 at 10:29 AM Daniel Nordlund <djnordlund at gmail.com> wrote: > > On 6/10/2020 1:20 AM, Luigi Marongiu wrote: > > isoDates = as.Date(oriDates, format = "%m/%d/%y") > > You need to use...

Upgrade R 3.2 to 3.3 using tar.gz file on Ubuntu 16.04
Luigi Marongiu · Sep 13, 2016 · r-help

Dear all, I am working on Linux Ubuntu 16.04 and I have installed R 3.2. I need to upgrade to R 3.3 and I tried several options available online with no success. I downloaded the tar.gz...

how to connect libreoffice base odb using R package odbc?
Luigi Marongiu · Nov 10, 2021 · r-help

Sure! I am attaching a simplified version of it. I did not see the quote text; it might be difficult to call all table's names since there are hundreds of columns.. On Wed, Nov 10, 2021 at 4:15...

Some code to run Hutcheson t-test using R
Luigi Marongiu · Sep 11, 2020 · r-help

Thank you for the clarification. On Fri, Sep 11, 2020 at 2:36 PM Karl Schilling <karl.schilling at uni-bonn.de> wrote: > > Dear Luigi: > > no, ?1?2 is not "missing" > > First, it should actually be "?1 - ?2". > > And as...

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