search for: luigi

Displaying 20 results from an estimated 343 matches for "luigi".

2018 Jan 22
2
substr gives empty output
In y <- substr(x, i, 1) your third integer needs to be the location not the number of digits, so change it to y <- substr(x, i, i) and you should get what you want. Cheers, Tim > Date: Sun, 21 Jan 2018 10:50:31 -0500 > From: Ek Esawi <esawiek at gmail.com> > To: Luigi Marongiu <marongiu.luigi at gmail.com>, r-help at r-project.org > Subject: Re: [R] substr gives empty output > Message-ID: > <CA+ZkTxubYDSZ3iqsg_=be9HBA2_3-TE95=mXbh4atvG- > ri_ixQ at mail.gmail.com> > Content-Type: text/plain; charset="UTF-8" > >...
2020 Oct 23
2
How to shade area between lines in ggplot2
...> wrote: > > Hi > > What about something like > > p+geom_ribbon(aes(ymin = slope_1*x + intercept_1 - 1/w[2], > ymax = slope_1*x + intercept_1 + 1/w[2], fill = "grey70", alpha=0.1)) > > Cheers > Petr > > > -----Original Message----- > > From: Luigi Marongiu <marongiu.luigi at gmail.com> > > Sent: Friday, October 23, 2020 11:11 AM > > To: PIKAL Petr <petr.pikal at precheza.cz> > > Cc: r-help <r-help at r-project.org> > > Subject: Re: [R] How to shade area between lines in ggplot2 > > > > al...
2020 Oct 26
0
How to shade area between lines in ggplot2
...ut new data in ribbon call. Something like newdat <- trainset newdat$z <- factor(0) p+geom_ribbon(data=newdat, aes(ymin = slope_1*x + intercept_1 - 1/w[2], ymax = slope_1*x + intercept_1 + 1/w[2]), fill = "yellow", alpha=0.1) Cheers Petr > -----Original Message----- > From: Luigi Marongiu <marongiu.luigi at gmail.com> > Sent: Friday, October 23, 2020 3:30 PM > To: PIKAL Petr <petr.pikal at precheza.cz> > Cc: r-help <r-help at r-project.org> > Subject: Re: [R] How to shade area between lines in ggplot2 > > Thank you, but this split the are...
2011 Apr 09
5
CentOS 5.6
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Just one thing: THANK YOU ALL!!! Ciao, luigi - -- / +--[Luigi Rosa]-- \ When your work speaks for itself, don't interrupt. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk2gWKsACgkQ3kWu7Tfl6ZQ/PACbBcTIsr4QjvuRqRAi4h+qO+fu Xo8AoK4I/dWBiPPONL...
2007 Mar 19
5
Dovecot 'suicide'
...more than a blink in human perspective, even if it is a long time for a computer point of view. Couldn't be possible to add a configuration option to avoid the suicide? Any other option other than suicide is better, because there could be situations of really unattended servers. Ciao, luigi -- / +--[Luigi Rosa]-- \ She was a lovely girl. Our courtship was fast and furious. I was fast and she was furious. --Max Kauffmann
2009 Feb 03
5
Tracing a server problem
...Disconnected: Logged out" entries. Given that I am NOT sure about the ethernet an firewall performance, how can I trace this problem? Dovecot is 1.1.10, configured with --with-mysql --with-ssl=openssl - --disable-ipv6 --sysconfdir=/etc --localstatedir=/var Userbase is mysql only. Ciao, luigi - -- / +--[Luigi Rosa]-- \ Too much blood in my alcohol system. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkmIG1MACgkQ3kWu7Tfl6ZQaawCeJbF4hplK06BcSkNnjqg7Lq60 5wsAoJGLKo0+GUiLLPKbyXD0bAtxderl =LTpZ...
2016 Jul 17
2
doveadm feature request: move mailbox between users
A feature request for doveadm: move (or copy) mailboxes between users Something like: doveadm movemailbox -s User1 -d User2 Old/Mail/Box Destin/Ation/Path (the same with copymailbox) Or something like that is already possible? -- Ciao, luigi / +--[Luigi Rosa]-- \ It's not enough that we do our best; sometimes we have to do what's required. --Sir Winston Churchill
2016 Jul 17
2
doveadm feature request: move mailbox between users
...t;Moving Maildir folders" The problem is to prune and graft some branches of the [Maildir] folder structure between users. For instance, when a user leaves an organization, some of their mailboxes must ne copied/moved to varius coleagues in order to ensure business continuity -- Ciao, luigi / +--[Luigi Rosa]-- \ All great truths begin as blasphemies. --George Bernard Shaw
2012 Oct 14
2
Apache, IPv4, IPv6, virtual hosts
...e to have on the same box a name-based virtual host of Apache with IPv4 and an IP-based virtual host with IPv6. The only solution I have found so far is to run two instances of Apache, one on IPv4 and the other on IPv6. In your opinion, are there other solutions to this problem? Thanks. Ciao, luigi - -- / +--[Luigi Rosa]-- \ If you stick your head in the sand, one thing is for sure, you're gonna get your rear kicked. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://www.enigmail.net/ iEYEARECAAYFAlB6cvoACgkQ3kWu7Tfl6ZS57QCbBMVp...
2016 Mar 12
3
Logging the TLS cipher suite
...acme.com>, method=DIGEST-MD5, rip=1.2.3.4, lip=4.3.2.1, mpid=19671, TLS, session=<Jsvr46wt2c1ScQfY> This is the Postfix equivalent postfix/smtp[59723]: Anonymous TLS connection established to mail.acmne.com[1.2.3.4]:25: TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits) -- Ciao, luigi / +--[Luigi Rosa]-- \ We're not surrounded, we're in a target-rich environment!
2020 Oct 23
2
How to shade area between lines in ggplot2
...I got several answers using your question > > e.g. > https://stackoverflow.com/questions/54687321/fill-area-between-lines-using-g > gplot-in-r > > Cheers > Petr > > > -----Original Message----- > > From: R-help <r-help-bounces at r-project.org> On Behalf Of Luigi Marongiu > > Sent: Friday, October 23, 2020 9:59 AM > > To: r-help <r-help at r-project.org> > > Subject: [R] How to shade area between lines in ggplot2 > > > > Hello, > > I am running SVM and showing the results with ggplot2. The results include > >...
2012 Sep 18
4
add reference lines (or grid) in background
...lines in background? I am trying with abline() or grid() but the lines, since they are executed after the plot function, are draw on top. How can I draw such lines beneath the main plot? Here is an example: x<-rnorm(100) boxplot(x) abline(h=c(-1,0,1)) grid(NA, 4, lwd = 2) regards, Luigi Marongiu, MSc [[alternative HTML version deleted]]
2020 Oct 31
2
fast way to find most common value across columns dataframe
...odes. Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Sat, Oct 31, 2020 at 2:29 AM Jim Lemon <drjimlemon at gmail.com> wrote: > Hi Luigi, > If I understand your request: > > library(prettyR) > apply(as.matrix(df),1,Mode) > [1] "C" "B" "D" ">1 mode" ">1 mode" ">1 mode" "D" > [8] "C" "B" &q...
2020 Oct 23
0
How to shade area between lines in ggplot2
Hi What about something like p+geom_ribbon(aes(ymin = slope_1*x + intercept_1 - 1/w[2], ymax = slope_1*x + intercept_1 + 1/w[2], fill = "grey70", alpha=0.1)) Cheers Petr > -----Original Message----- > From: Luigi Marongiu <marongiu.luigi at gmail.com> > Sent: Friday, October 23, 2020 11:11 AM > To: PIKAL Petr <petr.pikal at precheza.cz> > Cc: r-help <r-help at r-project.org> > Subject: Re: [R] How to shade area between lines in ggplot2 > > also from this site: https://plo...
2011 Feb 03
5
Outlook 2010 IMAP disconnected
...a: 143 Codice errore: 0x800CCCDD Dovecot simply logs this: Feb 3 09:20:34 server dovecot: imap(xxxx): Disconnected: Logged out bytes=2488/534485 Feb 3 09:20:34 server dovecot: imap(xxxx): Disconnected: Logged out bytes=63/815 Where can I search to solve this issue? Ciao, luigi - -- / +--[Luigi Rosa]-- \ I'd be a vegetarian if bacon grew on trees. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk1KZj8ACgkQ3kWu7Tfl6ZQtHwCfTZPpFC5iHvL1+5EuxKAFlqWD DjcAn3rYU0Uwc13arHirb/5G3...
2016 Jul 16
2
Moving Maildir folders
On Sat, 16 Jul 2016 08:53:27 +0200 Luigi Rosa <lists at luigirosa.com> wrote: > > Mark Foley wrote on 16/07/2016 07:43: > > Our office had a user leave. Another user is taking over her duties and needs reference to the > > departing user's email. I've copied that entire departed user's Maildir structu...
2020 Oct 31
0
fast way to find most common value across columns dataframe
Thank you. The problem was not finding the mode but applying it the R way (I have the tendency to loop into each line of the dataframes, which I believe is NOT the R way). I'll try them. Best regards Luigi On Sat, Oct 31, 2020 at 5:40 PM Bert Gunter <bgunter.4567 at gmail.com> wrote: > > As usual, a web search ("find statistical mode in R") brought up something that is possibly useful -- Did you try this before posting? If not, please do so in future and let us know what your r...
2017 May 29
1
MySQL issue
Yes it is. On Mon, May 29, 2017 at 12:28 AM, Luigi Rosa <lists at luigirosa.com> wrote: > Amaechi Janneh wrote on 29/05/2017 02:47: > > May 28 20:20:32 AmaechiJ dovecot[10516]: auth-worker(10892): Error: sql( >> aj at example.com,): User query failed: Table 'mailserver.users' doesn't >> exist >> > &g...
2009 Feb 02
2
"user grade" IMAP stress test
...every kind of packet filtering on ZyWALL, few hours ago I moved the server near the ZyWALL and connected it directly. Should everything keeps going wrong, I would like to try to run some sort of IMAP test tool, but I have to give it to a Windows user. Can you please suggest me such tool? Ciao, luigi - -- / +--[Luigi Rosa]-- \ It's time you learn that freedom is never a gift. It has to be earned. --Kirk, The Return of the Archons -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkmHSKEACgkQ3kWu...
2009 Aug 04
2
Sending log messages too fast
...ans? IMAP(xxxxx at yyyyy.com): Sending log messages too fast, throttling.. It appeared twiche on the same user during a period when the server was very high on CPU load I don't know if it is related, but the user later told me that Thunderbird forced a reload of all the messages. Ciao, luigi - -- / +--[Luigi Rosa]-- \ It is not the strongest of the species that survives, nor the most intelligent, but the one most responsive to change. --Charles Darwin -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iE...