search for: yyyyyyyyyyyyyyyi

Displaying 5 results from an estimated 5 matches for "yyyyyyyyyyyyyyyi".

Did you mean: yyyyyyyyyyyyyyy
2006 Oct 27
1
barcharts with 2 different axes
Dear UseRs, I'm having trouble drawing a barchart with 2 quantities in different units as follows with one unit on the top axis and the other unit on the bottom. E.g., x Tonnes | . . . Row 1 Tonnes1 | xxxxxxxxxx Row 1 Litres1 | yyyyyyy Row 2 Tonnes1 | xxxxxxxxxxxxxxxxxxxxx Row 2 Litres1 | yyyyyyyyyyyyyyyy
2014 Dec 01
1
R: Re: SORT capability
# dovecot -n |grep -i sort (nothing) Maybe to full list is only available after authentication? # telnet localhost 143 Trying ::1... Connected to localhost. Escape character is '^]'. * OK [CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID ENABLE IDLE STARTTLS AUTH=PLAIN AUTH=LOGIN AUTH=DIGEST-MD5 AUTH=CRAM-MD5] Dovecot ready. a login XXXXXXXXXXX YYYYYYYYYYYYYYYY a OK [CAPABILITY
2014 Dec 01
0
R: Re: SORT capability
Here's my conf: # dovecot -n # 2.0.9: /etc/dovecot/dovecot.conf # OS: Linux 2.6.32-71.el6.x86_64 x86_64 CentOS release 6.6 (Final) auth_mechanisms = plain login digest-md5 cram-md5 disable_plaintext_auth = no first_valid_gid = 89 first_valid_uid = 89 mail_gid = 89 mail_location = maildir:/coraid-s2l2/domains mail_uid = 89 maildir_very_dirty_syncs = yes managesieve_notify_capability = mailto
2009 Jun 09
3
Splicing factors without losing levels
Hi list! An operation that I often need is splicing two vectors: > splice(1:3, 4:6) [1] 1 4 2 5 3 6 For numeric vectors I use this hack: splice <- function(x, y) { xy <- cbind(x, y) xy <- t(xy) dim(xy) <- length(x) * 2 return(xy) } So far, so good (?). But I also need splicing for factors and I tried this: splice <- function(x, y) { xy <-
2006 Mar 13
32
DRY principle form validations
We are wondering how you''d validate a credit card number or a SSN without writing Javascript and Ruby code. Would it be through Rails'' AJAX support? -- Posted via http://www.ruby-forum.com/.