search for: luescher

Displaying 17 results from an estimated 17 matches for "luescher".

Did you mean: escher
2017 Jun 23
0
Help: ifelse selection for x,y coordinates
...ou made the x and y x<-x[x>0] # or x<-x[x>0&&y>0], ditto for y, x[x!=""] in your ifelse (... ,"") case if x and y will not have the same length afterwards you need to make that list thingy. cheers Peter On 23. Jun 2017, at 07:30, C?line L?scher <c-luescher at hispeed.ch<mailto:c-luescher at hispeed.ch>> wrote: Hi Jim, Thank you very much for the answer ! The result is really better with this ? Here is the code : kk<- function(x.Koordinate, y.Koordinate, data=data) + { + coordx<-data$x.Koordinate[data$G==24] + coordy<-data$y.K...
2017 Jun 23
2
Help: ifelse selection for x,y coordinates
...Cc: r-help at r-project.org Betreff: Re: [R] Help: ifelse selection for x,y coordinates Hi Celine, Perhaps if you modify your return value like this: xy<-as.data.frame(list(x,y)) names(xy)<-c("x","y") return(xy) Jim On Thu, Jun 22, 2017 at 6:48 PM, C?line L?scher <c-luescher at hispeed.ch> wrote: > Hi everyone, > My database has 3 columns : the x coordinates, the y coordinates and the value of G for every individual (20 in total). I would like to have the x,y coordinates of individuals, Under these conditions : the distance to the reference coordinates must be...
2017 Jun 21
1
+vnd.dovecot.duplicate for Bogofilter duplication shortcomings
Hello, Yes but how to activate this for all users, not on a per user basis or without writing out thousands of sieve files to users directories. Thank you. On 2017-06-15 13:33, Stephan Bosch wrote: > Op 6/15/2017 om 12:19 PM schreef Luescher Claude: >> I have +vnd.dovecot.duplicate plugin enabled but it seems to be >> ineffective. Any other tips for a workaround? >> > > Enabling that extension does nothing by itself. You need to add a > corresponding rule to your Sieve script. > > Also, that is the d...
2017 Sep 12
0
comparition of occurrence of multiple variables between two dataframes
...ogram for each row in an identical way and run KS test. But if you are after simple difference you may use compare package ( https://cran.r-project.org/web/packages/compare/index.html). Best, -m PS: Data is already plural :) datas does not exist. On 12 September 2017 at 13:57, C?line L?scher <c-luescher at hispeed.ch> wrote: > Yes of course, I can share this short view of the datas. > > > > Here is the head() of data100, containing all the trees with a final value > higher than 100 : > > CV11 > > CV12 > > CV13 > > CV14 > > CV15 > > CV21 &gt...
2016 Jul 19
3
Replication sieve scripts.
Hello, Following up on old thread: http://www.dovecot.org/pipermail/dovecot/2014-December/099003.html I have the exact same issue with 2.2.10: ii dovecot-antispam 2.0+20130822-2 amd64 Dovecot plugins for training spam filters ii dovecot-core 1:2.2.10-1 amd64 secure POP3/IMAP server - core files ii
2017 Jun 15
2
+vnd.dovecot.duplicate for Bogofilter duplication shortcomings
Hello, Sorry for a bit offtopic but it seems the bogofilter community is just as dead as dspam is. I trying to switch from DSPAM to bogofilter on a server where if I turn bogofilter on I run into the following issue: Certain users have sender and recipient bcc maps setup in postfix. This is for forwarding copy of an email to other address for example: Incoming lclude at company.com ->
2017 Sep 12
3
comparition of occurrence of multiple variables between two dataframes
...efer to tree data structure, maybe you could change the data structure to tree (https://cran.r-project.org/web/packages/data.tree/vignettes/data.tree.html) and try to write comparison of two tree objects. It might be easier that data.frame alone. On 12 September 2017 at 12:27, C?line L?scher <c-luescher at hispeed.ch> wrote: > Hi everyone, I need your help to solve a problem with occurrence and two dataframes. > I have an excel table of 15200 lines. Each line correspond to a tree analyzed for its structures. I have all the structures in columns (48 structures). The occurrence of these str...
2017 Sep 12
0
comparition of occurrence of multiple variables between two dataframes
...efer to tree data structure, maybe you could change the data structure to tree (https://cran.r-project.org/web/packages/data.tree/vignettes/data.tree.html) and try to write comparison of two tree objects. It might be easier that data.frame alone. On 12 September 2017 at 12:27, C?line L?scher <c-luescher at hispeed.ch> wrote: > Hi everyone, I need your help to solve a problem with occurrence and two dataframes. > I have an excel table of 15200 lines. Each line correspond to a tree analyzed for its structures. I have all the structures in columns (48 structures). The occurrence of these str...
2016 Jul 19
2
Replication sieve scripts.
...is a multi-node cluster already I would have to update all the nodes but if it would be only to install a couple of new debs on them I would not hesitate trying a newer dovecot version. Thank you. On Tue, 19 Jul 2016 11:54:27 +0200, Stephan Bosch wrote: > Op 19-7-2016 om 11:30 schreef Luescher Claude: > >> Hello, Following up on old thread: >> http://www.dovecot.org/pipermail/dovecot/2014-December/099003.html >> [1] >> I have the exact same issue with 2.2.10: It did not help. If there >> is >> one way I would like to get this work without upgradin...
2016 Jul 20
3
Replication sieve scripts.
...{ pop3_client_workarounds = outlook-no-nuls oe-ns-eoh pop3_no_flag_updates = yes pop3_save_uidl = yes pop3_uidl_format = %v.%u } protocol doveadm { mail_plugins = " quota notify replication" } On Tue, 19 Jul 2016 15:27:54 +0300, KSB wrote: > On 2016.07.19. 15:03, Luescher Claude wrote: > >> Hello, Are you sure about that I would need so recent version? That >> is >> ok to have some bugfixes but you are talking about the latest >> cutting >> edge debian jessie backports package. Even the mainline debian >> jessie >> onl...
2017 Jun 23
0
Help: ifelse selection for x,y coordinates
Hi Celine, Perhaps if you modify your return value like this: xy<-as.data.frame(list(x,y)) names(xy)<-c("x","y") return(xy) Jim On Thu, Jun 22, 2017 at 6:48 PM, C?line L?scher <c-luescher at hispeed.ch> wrote: > Hi everyone, > My database has 3 columns : the x coordinates, the y coordinates and the value of G for every individual (20 in total). I would like to have the x,y coordinates of individuals, Under these conditions : the distance to the reference coordinates must be...
2017 Jun 22
2
Help: ifelse selection for x,y coordinates
Hi everyone, My database has 3 columns?: the x coordinates, the y coordinates and the value of G for every individual (20 in total). I would like to have the x,y coordinates of individuals, Under these conditions?: the distance to the reference coordinates must be under or equal to 50 meters + the value of G must be bigger or equal to 16. Here?s what I?ve done first?: > kk<- function(x, y)
2017 Sep 12
2
comparition of occurrence of multiple variables between two dataframes
Hi everyone, I need your help to solve a problem with occurrence and two dataframes. I have an excel table of 15200 lines. Each line correspond to a tree analyzed for its structures. I have all the structures in columns (48 structures). The occurrence of these structures has been counted on every tree. For example, the tree 12607 has 3 structures CV11, 1 structure IN12 and none (0) of the rest of
2017 May 17
0
Sieve GLOBAL + Sieve LOCAL
Luescher Claude <stargate at tango.lu> writes: > I am using dovecot: > ... > ii dovecot-sieve 1:2.2.10-1 amd64 > secure POP3/IMAP server - Sieve filters support > ... > doveconf -n | grep -i sieve > Since doveconf does not indicate I beli...
2017 Jun 15
0
+vnd.dovecot.duplicate for Bogofilter duplication shortcomings
Op 6/15/2017 om 12:19 PM schreef Luescher Claude: > I have +vnd.dovecot.duplicate plugin enabled but it seems to be > ineffective. Any other tips for a workaround? > Enabling that extension does nothing by itself. You need to add a corresponding rule to your Sieve script. Also, that is the deprecated name for that extension. It...
2016 Jul 21
3
Replication sieve scripts.
.../sieve sieve_duplicate_period = 1h sieve_extensions = +editheader sieve_max_redirects = 20 And the sieve scripts work locally per server they are just not replicating as they should be. On Wed, 20 Jul 2016 16:31:55 +0200, Stephan Bosch wrote: > Op 20-7-2016 om 14:51 schreef Luescher Claude: > >> I did eventually was forced to do this and setup a 2 node test >> environment with the latest dovecot: /usr/dovecot/sbin/dovecot >> --version 2.2.25 (7be1766) /usr/dovecot/sbin/dovecot --build-options >> Build options: ioloop=epoll notify=inotify ipv6 openssl...
2017 May 16
2
Sieve GLOBAL + Sieve LOCAL
Hello List, I am using dovecot: ii dovecot-antispam 2.0+20130822-2 amd64 Dovecot plugins for training spam filters ii dovecot-core 1:2.2.10-1 amd64 secure POP3/IMAP server - core files ii dovecot-imapd 1:2.2.10-1 amd64 secure POP3/IMAP server - IMAP daemon ii