Displaying 20 results from an estimated 92 matches for "a01e".
Did you mean:
a01
2011 Dec 09
1
matrix calculation
Hello,
I have a matrix
animal time A01 A02
A d0 -5.4 2.7
A d112 4.6 5.9
A d224 3.9 6.3
B d0 7.1 5.6
B d112 1.5
2004 Aug 20
3
How generate "A01", "A02", ..., "A99"?
Hi,
Anyone can tell me how to generate "A01", "A02", ..., "A99"?
paste("A", 1:99, sep="") generates "A1", "A2",..., "A99". This is not what I want.
Thanks for the help.
-MY
[[alternative HTML version deleted]]
2011 Mar 11
3
Large dataset operations
Hello all,
I'm new to R and trying to figure out how to perform calculations on a large dataset (300 000 datapoints). I have already made some code to do this but it is awfully slow. What I want to do is add a new column for each "rep_ " column where I have taken each value and divide it by the mean of all values where "PlateNo" is the same. My data is in the following
2010 Dec 07
4
Creating binary variable depending on strings of two dataframes
Hi,
consider the following two dataframes:
x1=c("232","3454","3455","342","13")
x2=c("1","1","1","0","0")
data1=data.frame(x1,x2)
y1=c("232","232","3454","3454","3455","342","13","13","13","13")
2006 Apr 07
1
consistency issue
Hi there,
We have our mail boxes stored on a NFS server and we use maildir for
mailbox storage.
Some days ago we had a crush and SOME of the mailboxes get an error on
QUERY: "EXPUNGE".
eg:
telnet localhost 143
Trying 127.0.0.1...
Connected to localhost.localdomain.
Escape character is '^]'.
* OK Cabanova Mail ready.
A01 LOGIN "hoeschen@***.com" "***"
A01 OK
2009 Jun 23
2
Long to wide format without time variable
Hi all,
I am trying to convert a data set of physician death codings (each individual's cause of death is coded by multiple physicians) from long to wide format, but the "reshape" function doesn't seem to work because it requires a "time" variable to identify the sequence among the repeated observations within individuals. My data set has no order, and different
2009 May 22
2
Step by step: Making an R package with Fortran 95
To all. I need your help. The big question is: How do I make an R library
with Fortran 95 files? You may assume that I am a pretty decent programmer
in both R and Fortran. I lay out a scenario and need your help!
I know how to make an ordinary R package and have dabbled with R + Fortran
95 *.dll linking. I do not have a great handle on the whole Makevars file
and whatever else I might need
2007 Nov 21
1
ave and sd
Dear list,
I'm still trying to calculate the sd for V2 for
each group in V1 if V3 is '0':
> x
V1 V2 V3
1 A01 2.40 0
2 A01 3.40 1
3 A01 2.80 0
4 A02 3.20 0
5 A02 4.20 0
6 A03 2.98 1
7 A03 2.31 0
8 A04 4.20 0
# Work
x$vmean <- ave(x$V2, x$V1, x$V3 == 0, FUN = mean)
# Work
x$vsd2 <- ave(x$V2, x$V1, FUN = sd)
# Doesn't work
x$vsd <- ave(x$V2, x$V1, x$V3
2017 Dec 11
1
Mailsploit problem in responce of ENVELOPE
Hi,
I'm sorry, I had been tested by miss From/Reply-To,
If From/Reply-To addresses are bellow:
From: =?utf-8?b?c2VydmljZUBwYXlwYWwuY29tPGlmcmFtZSBvbmxvYWQ9YWxlcnQoZG9jdW1lbnQuY29va2llKSBzcmM9aHR0cHM6Ly93d3cuaHVzaG1haWwuY29tIHN0eWxlPSJkaXNwbGF5Om5vbmUi?==?utf-8?Q?=0A=00?=@mailsploit.com
Reply-To:
2017 Dec 11
2
Mailsploit problem in responce of ENVELOPE
Hi,
Sorry, It comes by fetching ENVELOPE, not BODYSTRUCTURE.
For example:
A01 UID FETCH 24 (ENVELOPE)
* 4 FETCH (UID 24 ENVELOPE ("Fri, 08 Dec 2017 09:44:35 +0900" "test2" ((NIL NIL "service" "paypal.com")) (("dev1" NIL "dev1-bounces" "example.com")) ((NIL NIL "service" "paypal.com")) (("user1"
2014 Jan 06
1
Dovecot quoting problem?
Hello Timo,
I think the following commit makes problems:
http://hg.dovecot.org/dovecot-2.2/rev/68a8b650578e
# Doesn't work
A01 LIST "" ~/Mail/Gesendet
# OK with quoted mailbox
A02 LIST "" "~/Mail/Gesendet"
Details:
imap
* PREAUTH [CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID
ENABLE IDLE SORT SORT=DISPLAY THREAD=REFERENCES THREAD=REFS
2007 Dec 14
2
Conflating categories
Hi,
I think this is a pretty basic question. I still couldn#t find the answer to
it, though.
I have some data loaded into R, which looks like this:
> data()
...
38358 Advice Article
38359 Advice Article
38360 GeneralInfo List
38361 GeneralInfo Article
38362 Purchase Paragraphs
38363 Purchase List
38364 Purchase Paragraphs
...
I now
2007 Feb 10
1
Differences between IDLE when Maildir vs. wel the "mail" folder is used
Are there any differences with how both IDLE and "UID FETCH n:n+x (FLAGS
UID...)" are handled when Dovecot is using a "mail" vs. a "Maildir"
user?
I have recently implemented support for IDLE (Push E-mail) in a client
infrastructure that I'm building. I haven't in depth checked out what
the problem might be, but when Dovecot was using the "mail" dir
2018 Sep 10
2
Byte-wide stores aren't coalesced if interspersed with other stores
Hi,
I have, in postres, a piece of IR that, after inlining and constant
propagation boils (when cooked on really high heat) down to (also
attached for your convenience):
source_filename = "pg"
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
define void @evalexpr_0_0(i8* align 8 noalias, i32* align 8 noalias) {
2006 Apr 07
4
setIs and method dispatch in S4 classes
Dear all,
I have a question regarding setIs and method dispatch in S4 classes:
Consider the following example:
#####################################################
## A02 "contains" A01 by setIs:
setClass("A01", representation(a="numeric",b="numeric"))
setClass("A02", representation(a="numeric",d="numeric"))
2002 Dec 18
6
Can I build an array of regrssion model?
Hi,
I am trying to use piecewise linear regression to approximate a
nonlinear function. Actually, I don't know how many linear functions I
need, therefore, I want build an array of regression models to automate
the approximation job. Could you please give me any clue?
Attached is ongoing code:
rawData = scan("c:/zyang/mass/data/A01/1.PRN",
what=list(numeric(),numeric()));
len =
2004 Dec 17
1
Cygwin and index code
As I can currently only work with windows (eek) I thought I'd try
dovecot there. I already sent a patch to make dovecot compile under
cygwin, but it still doesn't really work, here's part of a session that
I started while my maildir was totally empty (only cur/new/tmp in ~/Maildir)
$ ./imap.exe
* PREAUTH [CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND
UNSELECT LITERAL+
2009 Jan 16
1
Trouble with %d in args of passwd-file
Hello,
I am trying to configure my dovecot folowing this guide:
http://www.w3style.co.uk/virtual-domains-with-exim-and-dovecot
I append the output of dovecot -n below. I created
/etc/vmail/my-domain.de/user containing:
test-user:{PLAIN}test:1002:100::/home/test-user::
No I try to login:
telnet 127.0.0.1 143
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
* OK This
2004 Apr 23
1
Issues with Samba 3.0.2 on OSX using ADS.
We have a Win2K network at work and I've been trying to integrate my Mac
10.3 machine into the network. It seems that once one thing is working,
something else is not. I have read through various Mac tutorials found
on the web but none seem to solve my problem.
Right now I have Active Directory Domain Logons working successfully but
Samba will not allow anyone (from Mac/Unix/Windows) to
2018 Sep 11
2
Byte-wide stores aren't coalesced if interspersed with other stores
Andres:
FWIW, codegen will do the merge if you turn on global alias analysis for it
"-combiner-global-alias-analysis". That said, we should be able to do this
merging earlier.
-Nirav
On Mon, Sep 10, 2018 at 8:33 PM, Andres Freund via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> Hi,
>
> On 2018-09-10 13:42:21 -0700, Andres Freund wrote:
> > I have, in postres,