search for: necessarity

Displaying 20 results from an estimated 42 matches for "necessarity".

Did you mean: necessarily
2006 Dec 18
3
turning expression object to function
Dear all, I have the following problem. Given an expression object 'expr' containing a certain set of symbols (say 'a', 'b', 'c'), I would like to translate the expression object in an R function of, say, 'a', programmatically. Here an example of what I mean. Given: > expr <- expression(a+b+c) a call like: > asFunctionOf(expr, 'a',
2012 Nov 01
2
subset a defined row plus the aforegoing
Hello, my data is sorted by start.ens (see below). And now I would like to extract all rows (so called* defined row*s) with type==Expression - subset (df, type==Expression) - and the aforegoing type==DNase HS (which is not necessarly row n-1 - assumung that the defined row is n). I dont know how to add this to my subset command. Is that possible? Thanks Hermann > df start.ens fc.trans
2005 May 05
1
creating names for regressios using the assign()
Hi there. I have a data frame, X, with n+m columns. I want to regress each of the first n columns on the last m. This is what I am trying to do: for ( i in 1:n ) assign( paste ("reg",1:14,sep="")[i] , lm( X[,i] ~ X[,i+1] + ... + X[,i+m], data= X ) ) It happens that some of the regressions, say the 3rd, seems to be a singular fit (or something else I don't know
2006 Mar 15
1
variance from correlated observations
Hi all. A statistical question. I have to estimate the variance of the sum: X(1) + X(2) + ...+ X(n) from an observed sample, where X(i) are *correlated* and not necessarly identically distributed. Someone can suggest a simple strategy (I hope by exploiting some already present R package) for obtaining such estimate from an observed vector X[1:n]? Tnx all, Antonio, Fabio Di Narzo.
2006 Mar 12
11
HABTM selection conditions
Hi, I am currently trying to learn RoR and there is something I cannot figure out. I have two models: Article and Category, that are HABTM-linked. Everything works fine if I want to select all articles corresponding to a category, with something like @articles = @category.find(@params[:id]).articles However, I have a ''published'' field in my ''articles''
2001 Dec 21
1
pure statistical question
Dear all, This is a pure statistical question, not necessarly related to R. I could not find it in literature. Suppose I'm intersted in a parameter rho, say, equal to: r=beta1/beta2, where beta1 and beta2 come from a linear model y=beta0+beta1X1+beta2X2+.... Fitting the model I can get the (biased) estimate of r=b1/b2, where b1 and b2 are the estimates in the regression model; I can get the
2007 Dec 17
2
[LLVMdev] RFC: GLIBCXX_DEBUG ScheduleDAG Patch
Attached is a patch to fix a GLIBCXX_DEBUG error in ScheduleDAGRRList. The problem is that calls to CapturePred may reprioritize elements in the priority queue, violating streak weak ordering requirements. To fix this, I introduced a reference wrapper for containers to obtain access to the SUnitVec used by std::priority_queue. When CapturePred runs, it calls updateNode which does a
2020 May 15
1
SSL Error
Oops, on second glance I don't think that error is actually directly related to what I was doing. I had been testing to see if the certificate chain was installed properly by running openssl s_client -connect mail.example.com:143 But there was no certificate reported in stdout. I thought that error was related to my test command, but I realize now it's not. I'm still confused,
2020 May 14
2
SSL Error
I just installed a certificate on my mail server to Postfix and Dovecot. The certificate is functional on Postfix, but for some reason I keep getting this error. Any suggestions on how to fix it? mail dovecot: imap-login: Error: SSL: Stacked error: error:1408A10B:SSL routines:ssl3_get_client_hello:wrong version number Here is my configuration: # 2.2.22 (fe789d2): /etc/dovecot/dovecot.conf #
2010 Feb 14
0
[LLVMdev] sparc status llvm 2.7?
On 02/10/2010 01:31 AM, Nathan Keynes wrote: > On 09/02/2010, at 3:57 AM, Chris Lattner wrote: > > >> On Feb 8, 2010, at 12:37 AM, Nathan Keynes wrote: >> >>> Firstly, the BNE/BA pair should be reduced to a BE (I assume this is the responsibility of AnalyzeBranch and friends that you mention). >>> >> Right. Implementing AnalyzeBranch
2004 Aug 06
5
SIMD interest
Greetings, <p>my apologies for putting this trash in the mailing list but the topic about SSE run-time option interested me pretty much. Looks like some people is really experienced on the topic. I would really appreciate if somebody could point me to good resources about SSE and Altivec (not necessarly on the net, I'm ready to invest some money if necessary). I already have intel
2020 Sep 21
3
At a loss with antispan and imap_sieve
On Mon, 21 Sep 2020, Ferenc wrote: > Thanks for your quick reply! I tried /tmp/debug.log, world-writeable, > but no dice. > >> https://doc.dovecot.org/configuration_manual/howto/antispam_with_sieve > > I followed the setup here. I think it works up until the external script > is called (pipe :copy "sa-learn-ham.sh"). That's why I tried echo hi >>
2020 Sep 07
2
Metadata in LLVM back-end
Am 31/08/20 um 14:10 schrieb David Greene: > Lorenzo Casalino via llvm-dev <llvm-dev at lists.llvm.org> writes: > >> Furthermore, after register allocation there is a non-negligible effort >> to properly annotate instructions which share the same output register... >> >> Concerning the usage of the live ranges to tie annotated instruction and >> intrinsic,
2020 Sep 15
2
Metadata in LLVM back-end
Am 08/09/20 um 17:57 schrieb David Greene: > Lorenzo Casalino <lorenzo.casalino93 at gmail.com> writes: > >> Am 31/08/20 um 14:10 schrieb David Greene: >>> Lorenzo Casalino via llvm-dev <llvm-dev at lists.llvm.org> writes: >>> >>>> Furthermore, after register allocation there is a non-negligible effort >>>> to properly annotate
2010 Jun 26
9
xen 4.0-testing: cannot install grub in debian domU (both hvm and pv)
# dd if=/dev/zero of=/srv/xen/webserver.img oflag=direct bs=1M seek=4095 count=1 # dd if=/dev/zero of=/srv/xen/webserver.img oflag=direct bs=1M count=4096 root@debian:~# grub-install /dev/xvda Searching for GRUB installation directory ... found: /boot/grub The file /boot/grub/stage1 not read correctly. Darkbasic _______________________________________________ Xen-users mailing list
2010 Feb 09
3
[LLVMdev] How to check for "SPARC code generation" in MachineBasicBlock.cpp?
On 09/02/2010, at 3:57 AM, Chris Lattner wrote: > On Feb 8, 2010, at 12:37 AM, Nathan Keynes wrote: >> Firstly, the BNE/BA pair should be reduced to a BE (I assume this is the responsibility of AnalyzeBranch and friends that you mention). > > Right. Implementing AnalyzeBranch will allow a bunch of block layout and branch optimizations to happen. > >> However I still
2020 May 15
0
SSL Error
> On 15/05/2020 02:36 Brandon Roa <brandon at bitlagoon.com> wrote: > > > I just installed a certificate on my mail server to Postfix and Dovecot. > The certificate is functional on Postfix, but for some reason I keep > getting this error. Any suggestions on how to fix it? > > mail dovecot: imap-login: Error: SSL: Stacked error: error:1408A10B:SSL >
2020 Sep 21
0
At a loss with antispan and imap_sieve
> On 21/09/2020 11:11 Bernardo Reino <reinob at bbmk.org> wrote: > > > On Mon, 21 Sep 2020, Ferenc wrote: > > > Thanks for your quick reply! I tried /tmp/debug.log, world-writeable, > > but no dice. > > > >> https://doc.dovecot.org/configuration_manual/howto/antispam_with_sieve > > > > I followed the setup here. I think it works up
2004 Aug 06
0
SIMD interest
No, The way you check if SSE FP / xmm is supported is to issue an instruction with an xmm operand inside of a try catch loop: try { issue asm which uses xmm registers such as: pxor xmm0 xmm1 } catch(...) { if you get here an illegal instruction exception occurred then xmm registers are not supported. } Incidentally, in our case, just having an Atholon XP with Windows
2002 Mar 07
0
Hierarchical Terms in RE models?
Hi all, this is a question (really, not necessarly related to R) that I was not able to find in standard textbooks (at last those I've read, of course: Bates and Pinero, Lindsey). I'm fitting a linear mixed model with fixed part: X+A+X:A Just the interaction term X:A is significant suggesting an effect of X only in one group (suppose X is continuous and A is a binary variable, although