search for: forful

Displaying 20 results from an estimated 23 matches for "forful".

Did you mean: formul
2005 Oct 19
6
forrest plot
Hi, can you tel me how can I make a Forrest Plot with R? It is possible and easy or are there a more practical free software available? Than you Mic [[alternative HTML version deleted]]
2009 Jun 02
2
reference counting bug: overwriting for loop 'seq' variable
It looks like the 'seq' variable to 'for' can be altered from within the loop, leading to incorrect answers. E.g., in the following I'd expect 'sum' to be 1+2=3, but R 2.10.0 (svn 48686) gives 44.5. > x = c(1,2); sum = 0; for (i in x) { x[i+1] = i + 42.5; sum = sum + i }; sum [1] 44.5 or, with a debugging cat()s, > x = c(1,2); sum = 0; for (i in x) {
2007 Oct 07
1
New Embedded Distro
Hi All, A couple of weeks ago I noticed Askozia PBX, which is a new embedded Asterisk & OS distro at http://askozia.com/pbx. This caught my attention for two reasons; it uses v1.4 of Asterisk, and it uses the m0n0wall development framework to build on FreeBSD with a PHP based GUI. I've used m0n0wall for years, and FreeNAS also, which shares the same OS/GUI framework. I booted the latest
2011 Feb 06
1
How to use a value of an aboject in a line command?
This is my first time here at R Forum! I am a new user of R. I am very happy with this fabulous software! I know how to use greps, fors, seeds, %in%, paste, etc. But I need to know how to use a value of an aboject in a line command? Example: > i [1] "TP53" > TP53 V1 V2 V3 1 1 TP53 1.1 2 2 TP53 1.2 3 3 TP53 1.3 I would like to do a t.test of TP53 x
2001 Dec 20
1
accented share name ok with smbclient but not with smbmount
Hi, I'm trying to mount with smbmount a WinNT4.0 share resource from a Linux running Samba 2.2.2.=20 WinNT box is installed with code page=3D850. The resource name includes grave accented characters, in particular: =E0. I'm trying to smbmount with: $ smbmount '//NThostname/of=E0rs' /mnt/ofors -o ip=3Dxxx.xxx.xxx.xxx,username=3Dofors,password=3D******,workgroup=3Dwwwwww where:
2011 Feb 12
11
SIP Hardphone that works well with asterisk
Hi, I have been out of touch with asterisk for quit some time and needed some recommendations. I am looking for SIP hardphone that works well with asterisk server. Pls suggest. cheers /ag -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110212/ccd9d985/attachment.htm>
2008 Mar 19
0
[LLVMdev] Proposal for GSoC project for improving llvm-test testsuite
> "Didn't work" means... what? Compilation failed? Program doesn't work? > Either way: what mesages do you get? The graphical screen was just blank. darkplaces emits some log messages as usual. But step by step... Used LLVM-GCC ------------- The used llvm-gcc, when run with "llmv-gcc --version" shows "llvm-gcc (GCC) 4.2.1 (Based on Apple Inc. build 5546)
2015 Aug 27
2
Modifying objects with MC
A mutable interface to object files would be great to have but doesn't exist in any meaningful sense in LLVM today. David's hack and similar tricks are what's necessary right now. I'd love to fix that as its a question that comes up not infrequently. Sent from my iPhone > On Aug 25, 2015, at 2:44 AM, David Chisnall via llvm-dev <llvm-dev at lists.llvm.org> wrote: >
2005 Dec 11
0
Consultant to fix nagios thread issue ?
Hello, one of our customers asked for nagios on FreeBSD. We do use it on freebsd 4, but not yet on freebsd 5. According to http://nagios.sourceforge.net/docs/2_0/whatsnew.html there is still a problem with nagios because of some thread issues. See also: http://lists.freebsd.org/pipermail/freebsd-stable/2005-May/014518.html I'm looking fors some freebsd developer who would be willing to
2006 Jun 27
2
Survival
? stato filtrato un testo allegato il cui set di caratteri non era indicato... Nome: non disponibile Url: https://stat.ethz.ch/pipermail/r-help/attachments/20060627/84d9bd54/attachment.pl
2008 Mar 19
3
[LLVMdev] Proposal for GSoC project for improving llvm-test testsuite
Am Mittwoch, den 19.03.2008, 14:49 +0100 schrieb Holger Schurig: > > Just my two cents. From time to time I'm testing LLVM via > > compiling & running such big beasts as Qt and Mozilla. Also, > > at 2.0 time I tried to compile & test bunch of software from > > KDE and many others. > > I tried to compile the 3D game engine "darkplaces" with
2008 Apr 13
20
uninitialized constant
Hi guys, I''m part way through a RoR application, for some reason whenever I add new controllers (using scaffold) I get an uninitialized constant [name of controller] error. The first few controllers work fine, the only thing I can see that I''ve changed is the layout file (but scaffold creates a new layout for each controller so can''t see that being the problem). You
2009 Aug 23
2
difficult "for"
Hi, My english isn't brilliant and my problem is very difficult to describe but I try ;) My first question is: May I write loop "for" like this or similar - for (i in sth : sth[length(sth)], k in sth_else : length(sth_else) ) - I'd like to have two independent conditions in the same loop "for". My secound question depend on program below. I'd like to write every
2006 Mar 31
3
smb-ldap or not to smb-ldap
Hi all, We are deploying a Linux server and desktops for a customer. We will have the users and groups in LDAP on the server, and files shared via NFS. However, one never knows if Windows desktops will be needed in the future. Is it a good idea to add users with smb-ldap even if samba is not initially used, as adding the samba attributes to an existing LDAP database is painful, and the
2007 Jun 29
1
[LLVMdev] LLVM assembly without basic block
Thank you for reminding me the notion of the basic block. Of course, I know all the assembly takes the form of BBs and is divided into units of BB. OK. It looks better for me to explain what I wanted to do more clear from the first. Actually, I am working on emitting out an assembly of VM by using LLVM. LLVM assembly looks similar with this VM assembly except BB. The VM assembly does not have the
2006 Nov 02
1
avoiding a loop: "cumsum-like"
Hello Rhelpers, I need to run the following loop over a large number of data-sets, and was wondering if it could somehow be vectorized. It's more or less a cumulative sum, but slightly more complex. Here's the code, and an example dataset (called tab in my code) follows. Thanks in advance for any suggestions! res<-0 for (i in min(tab$Date):max(tab$Date)) { if
2007 May 02
2
I need help
hello, I need help because I don't understand the syntaxe "else" how can I write it for example I writed a script to cut missings values and I have errors > if(na==length(C)){ + pos=match(0,match(donGeno[[na-1]],donGeno[[na]],nomatch=0)) + for(k in 1:(na-1)) { + if(pos==1) {donGeno[[k]] <-
1998 Jun 19
16
WARNING: Break-in attempts
Greetings all, I''m forwarding a copy of an email I sent reporting attempted break-ins on my main server, earth.terran.org. I am forwarding this because I think it is relevant that folks watch for this kind of activity in their logs to catch people who "try doorknobs" in the middle of the night. After sending this email, I sent a talk request to the user, who was still logged
2011 May 09
1
Bug#625438: [PATCH] xen: ioapic: avoid gcc 4.6 warnings about uninitialised variables
# HG changeset patch # User Ian Campbell <ian.campbell at citrix.com> # Date 1304937815 -3600 # Node ID 35abcbcdf8bcabab6e0bbd929f69b613e167edfd # Parent 4b0692880dfa557d4e1537c7a58c412c1286a416 xen: ioapic: avoid gcc 4.6 warnings about uninitialised variables gcc 4.6 complains: io_apic.c: In function 'restore_IO_APIC_setup':
2011 May 09
1
Bug#625438: [PATCH] xen: ioapic: avoid gcc 4.6 warnings about uninitialised variables
# HG changeset patch # User Ian Campbell <ian.campbell at citrix.com> # Date 1304937815 -3600 # Node ID 35abcbcdf8bcabab6e0bbd929f69b613e167edfd # Parent 4b0692880dfa557d4e1537c7a58c412c1286a416 xen: ioapic: avoid gcc 4.6 warnings about uninitialised variables gcc 4.6 complains: io_apic.c: In function 'restore_IO_APIC_setup':