similar to: Questions about special_use mailboxes

Displaying 20 results from an estimated 600 matches similar to: "Questions about special_use mailboxes"

2007 Aug 07
0
plotting series of matrices on a single plot.
Dear experts, I have in all 14 matrices which stands for gene expression divergence and 14 matrices which stands for gene sequence divergence. I have tried joining them by using the concatanation function giving SequenceDivergence <- c(X1,X2,X3,X4,X5,X6,X7,X8,X9,X10,X11,X12,X13,X14) ExpressionDivergence <- c(Y1,Y2,Y3,Y4,Y5,Y6,Y7,Y8,Y9,Y10,Y11,Y12,Y13,Y14) where X1,X2..X14 are the
2007 Aug 07
1
Error in as.double.default(x) : (list) object cannot be coerced to 'double'
Dear experts, I have in all 14 matrices which stands for gene expression divergence and 14 matrices which stands for gene sequence divergence. I have tried joining them by using the concatanation function giving SequenceDivergence <- c(X1,X2,X3,X4,X5,X6,X7,X8,X9,X10,X11,X12,X13,X14) ExpressionDivergence <- c(Y1,Y2,Y3,Y4,Y5,Y6,Y7,Y8,Y9,Y10,Y11,Y12,Y13,Y14) where X1,X2..X14 are the
2018 May 24
0
Manipulation of data.frame into an array
This is one of those instances where a less superficial knowledge of R's technical details comes in really handy. What you need to do is convert the data frame to a single (numeric) vector for, e.g. a matrix() call. This can be easily done by noting that a data frame is also a list and using do.call(): ## imp is the data frame: do.call(c,imp) X11 X12 X13 X14 X15 X16 X17 X18 X19
2018 May 24
2
Manipulation of data.frame into an array
Hello everyone, Thank you for this. Nonetheless it is not exactly want i need. I need mydata[[1]] to provide the values for all 3 variables (Y, X1 and X2) of the first imputation only. As it stands it returns the whole database. Any ideas? Best, ioanna ________________________________ From: Bert Gunter <bgunter.4567 at gmail.com> Sent: 24 May 2018 16:04 To: Ioanna Ioannou Cc:
2002 Aug 20
2
Reset par(xaxp) in plot
R-Helpers; This seems simple to set graphic parameter, but I tried plot a graph with 10 intervals in x axis with par(xaxp = c(0, 150, 10) but to no avail: par(xaxp =c (0, 150, 10)) plot(age, y18, type="n", ylab="Height (m)", xlab=" age (Yrs)", font = 2) lines(age, y6, lty = 4, lwd = 2) lnes(age, y10, lty = 1, lwd =2) lines(age, y14, lty = 2, lwd =2)
2002 Aug 20
0
Sum: Reset par(xaxp) in plot
Many thanks to Peter Dalgaard BSA and Uwe Uwe Ligges for their prompt responses. It turns out xaxp can not be set by par(xaxp = c(x1, x2, n)) as indicatedd in Help for 'par' document. Both pointed me to the right direction by setting axes = F or xaxt = "n" in plot() and using axis(1, seq=c(0,150,15)) to produce an axis with desired intervals. Richard My original question:
2008 Oct 15
0
Iterative estimation of linear regression model
Dear all I am intrested in making iterative estimation (thro' loop statements) of, say, linear regression model. For this purpose, I have written the following programme and that I have made use of a sample data (viz., exp.txt): ? Programme: ? # Linear regression modelling with sample data (try5.txt) # Repeated estimation through loop statement
2018 May 24
4
Manipulation of data.frame into an array
Hello everyone, I want to transform a data.frame into an array (lets call it mydata), where: mydata[[1]] is the first imputed dataset...and for each mydata[[d]], the first p columns are covariates X, and the last one is the outcome Y. Lets assume a simple data.frame: Imputed = data.frame( X1 = c(1,2,1,2,1,2,1,2, 1,2,1,2,1,2,1,2), X2 =
2002 Dec 09
0
Re: R-help digest, Vol 1 #10 - 6 msgs
°_§É§¿§¿ ----- Original Message ----- From: <r-help-request at stat.math.ethz.ch> To: <r-help at stat.math.ethz.ch> Sent: Sunday, December 08, 2002 7:00 PM Subject: R-help digest, Vol 1 #10 - 6 msgs > Send R-help mailing list submissions to > r-help at stat.math.ethz.ch > > To subscribe or unsubscribe via the World Wide Web, visit >
2014 Dec 29
2
SPECIAL-USE again
On 2014-12-29 20:45, Stephan Bosch wrote: > For creating a special use mailbox there is the CREATE-SPECIAL-USE > capability (https://tools.ietf.org/html/rfc6154, Section 3). As you > suggested, the special use attributes can also be changed using the > METADATA capability (https://tools.ietf.org/html/rfc6154, Section 4). > Unfortunately, both of these features are not yet supported
2008 Dec 22
1
sorting variable names containing digits
Dear r-helpers, I'm looking for a way of sorting variable names in a "natural" order, when the names are composed of digits and other characters. I know that this is a vague idea, and that sorting character strings is a complex topic, but perhaps a couple of examples will clarify what I mean: > s <- c("x1b", "x1a", "x02b", "x02a",
2006 Aug 25
2
horizontal direct product
II am translating some gauss code into R, and gauss has a matrix product function called the horizontal direct product (*~), which is some sort of variant on the Kronecker product. For example if x is 2x2 and y is 2x2 the horizontal direct product, z, of x and y is defined (in the Gauss manual) as: row 1 = x11*y11 x11*y12 x12*y11 x12*y12 row 2 = x21*y21 x21*y22 x22*y21 x22*y22 Or in R
2006 Mar 24
1
Multiple error bar plots
Dear R-lister I have a question about how to create multiple error bar plots. I found that I can use an "errbar" function from Hmisc package to create one error bar plot in which there are multiple data points (x, y) with the error bars. Thus, I know that I can get "one" error bar plot which consists of many data points. However, I did not find a way to put
2011 Jan 17
1
OT: Trojita v0.2.9 Released
There was some interest in Trojita (an IMAP client) on this list at one point. It looks like it's been seeing steady development again: http://jkt.flaska.net/blog/Trojita_v0_2_9__a_Qt_IMAP_e_mail_client.html
2003 May 30
1
bootstrapping data.frame and matrix
Dear All, When bootstrapping a statistics based on more than one vector, from a data.frame or a matrix object, it looks like I am not able to pass the data to R. What am I doing wrong? I use the library "bootstrap". Here is an example with a data.frame called "data" "boot2_bootstrap(data, theta, nboot) I get the following error message: Error in inherits(x,
2013 Jun 01
1
MS asks for feedback on standards support in Outlook/Exchange
Am 01.06.2013 13:40, schrieb Timo Sirainen: > On 1.6.2013, at 9.35, Robert Schetterer <rs at sys4.de> wrote: > >> Am 01.06.2013 00:28, schrieb Timo Sirainen: >>> Someone should at least mention that they should support the real SPECIAL-USE instead of just Gmail-specific XLIST.. >> >> i cant see any major Problems recent with i.e outlook 2013 and dovecot
2015 Apr 22
2
Dovecot 2.2.16 crashes when fetching mails with Trojita 0.5
Hello! When I fetch certain emails from my Dovecot 2.2.16 server using Trojita 0.5, dovecot/imap will crash reproducibly. Please find config and backtrace from coredump attached. Best regards, Dennis -------------- next part -------------- A non-text attachment was scrubbed... Name: dovecot-imap-core-1179.gdb.log Type: text/x-log Size: 4905 bytes Desc: not available URL:
2014 Dec 29
0
SPECIAL-USE again
On 12/29/2014 11:22 AM, Peter Mogensen wrote: > Hi, > > Great to see Thunderbird support SPECIAL-USE now. > > I would like to hear the list about the intended use of SPECIAL-USE. > > I get the impression from several earlier mails here that the > intention is for the server to globally decide what the folder-name of > a specific SPECIAL-USE folder is for all users. >
2014 Dec 29
0
SPECIAL-USE again
On 12/29/2014 9:24 PM, Peter Mogensen wrote: > On 2014-12-29 20:45, Stephan Bosch wrote: >> For creating a special use mailbox there is the CREATE-SPECIAL-USE >> capability (https://tools.ietf.org/html/rfc6154, Section 3). As you >> suggested, the special use attributes can also be changed using the >> METADATA capability (https://tools.ietf.org/html/rfc6154, Section 4).
2011 Jun 22
1
LIST-EXTENDED support?
Hi there. Can I check if LIST-EXTENDED refers to RFC 6154 (http://tools.ietf.org/html/rfc6154), rfc for special use mailboxes. I'd like to specify a designated folder as \Spam and etc. Googling "dovecot list-extended" and "dovecot special use" suggests that dovecot supports this feature (via patch logs and 1 bug report for Mozilla Thunderbird which suggests that