search for: p8

Displaying 20 results from an estimated 252 matches for "p8".

Did you mean: 8p
2011 Aug 13
1
Own R function doubt
.../(P3-M3+R3) P4<-P3-B R4<-P4*Hembras*R M4<-P4*M T5<-(R4-M4+B)/(P4-M4+R4) P5<-P4-B R5<-P5*Hembras*R M5<-P5*M T6<-(R5-M5+B)/(P5-M5+R5) P6<-P5-B R6<-P6*Hembras*R M6<-P6*M T7<-(R6-M6+B)/(P6-M6+R6) P7<-P6-B R7<-P7*Hembras*R M7<-P7*M T8<-(R7-M7+B)/(P7-M7+R7) P8<-P7-B R8<-P8*Hembras*R M8<-P8*M T9<-(R8-M8+B)/(P8-M8+R8) P9<-P8-B R9<-P9*Hembras*R M9<-P9*M T10<-(R9-M9+B)/(P9-M9+R9) P10<-P9-B R10<-P10*Hembras*R M10<-P10*M result<-list(B,T1,P1,R1,M1,T2,P2,R2,M2,T3,P4,R4,M4,T5,P5,R5,M5,T6,P6,R6,T6,P7,R7,M7,T8, P8,R8,M8,T9,P9,R9...
2003 Jun 19
2
Subseting by more than one factor...
Is it possible in R to subset a dataframe by more than one factor, all at once? For instance, I have the dataframe: >data p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 pred 1 0 1 0 0 0 0 0 0 0 0 0.5862069 4 0 0 0 0 0 0 0 0 0 1 0.5862069 5 0 0 0 0 0 0 1 0 0 0 0.5862069 6 0 0 0 0 0 0 0 1 0 0 0.5862069 7 0 0 1 0 0 0 0 0 0 0 0.5862069 9 0 0 0 0 1 0 0 0 0 0 0.5862069...
2011 Dec 19
1
calculating correlation coefficients on repeated measures
...== 'Delta13C') for individuals (ID variable == 'Individual_ID'. Each repeated measure is "indexed" (right term?) by the variable 'FeatherPosition' and given as c('P1', 'P2', 'P3', 'P4', 'P5', 'P6', 'P7', 'P8', 'P9'). I would like to calculate a correlation coefficient (r) and p.value for all measures of 'Delta13C' by individual. the function 'cor' only seems to work when comparing two individual measures (e.g. P1 and P2, P2 and P3, etc.) and only if I restructure my table. A...
2008 Jul 30
1
Re creating Procrustes Plot in Lattice
Hi, I have been trying to create a function to generate a Procrustes plot, generated from package "vegan" in lattice. standard vegan code as follows library(vegan) pro=protest(P1, P8, permutations=4999,choices=1:4) plot(pro) Now, here is the code for the function that I have failed to get to work properly. panel.procrustes=function(x,y) }Pro=protest(x,y,permutations=4999,choices=1:4) Proplot=plot(Pro) } xyplot(P1[1:4]~P8[1:4],panel=panel.procrustes) I can generate an empty...
1998 Jul 16
0
".." not displayed with p8
Hello , I have installed the 1.9.18p8 release on my HP9000 ( HP-UX 10.20 ) . I use the same smb.conf than with the p2 release . I have now a problem with the Windows 3.11 clients : In the subdirectories of each share, I can't display the " .. " root directory . Is it a known bug or just an error in my...
2005 Oct 28
0
chkrootkit 0.46 reboots FreeBSD 5.4-RELEASE-p8
Hello, Please, don't use chkrootkit 0.46 on production machines. The "chkproc" process sends a SIGXFSZ (25) signal to init, that interprets this signal as a "disaster" and reboots after a 30s sleep. I'm contacting the chkrootkit maintainer to fix this problem. Sorry, Cordeiro
2012 May 24
0
[LLVMdev] Predicate registers/condition codes question
...er operation > that is currently missing this check for type promotion, or do we want > a new hook? I found it pretty difficult to modify the existing DAG combiner to add the missing calls to isDesirableToPromoteOp, so I abandoned this path. I found it easier to work with a new integer type p8 for the 8 bit predicates, such that I can promote i1 into p8 and avoid the confusion of integer and predicate registers that I had when using the same i8 type. Would a patch adding the p8 type be ok to commit to llvm? Thanks, Sebastian -- Qualcomm Innovation Center, Inc is a member of Code Aurora...
1998 Jul 21
3
Can't display ".." with the p8 release
Hello, I ask this question last week but I got no response : I have installed the 1.9.18p8 release on my HP9000 ( HP-UX 10.20 ). I use the same smb.conf than with the p2 release . I have now a problem with the Windows 3.11 clients : In the subdirectories of each share, I can't display the " .. " root directory ( but it works ). Is it a bug or just an err...
2012 Mar 16
1
R merge two dataframes with different row?
...400 401 name4 3 500 501 name5 4 600 601 name6 4 700 701 name7 File2 is: V1 V2 V3 V4 1 50 55 p1 3 402 449 p2 4 550 650 p3 4 651 660 p4 2 150 250 p5 2 250 350 p6 3 450 499 p7 2 100 250 p8 I hope to have the merged file3 meet the following three criteria: (1) File1$V1==File2$V1, and (2) File1V2>=File2$V2, and (3) File1V3<=File2$V3. In this case, we can see that there should be four records meet these three criteria. So the final merge file should looks like: File1$V1 File1$V2...
2012 May 23
2
[LLVMdev] Predicate registers/condition codes question
Hi Ivan, On Tue, May 22, 2012 at 5:09 PM, Ivan Llopard <ivanllopard at gmail.com> wrote: > Hi Sebastian, > > On 22/05/2012 23:25, Sebastian Pop wrote: >> So my question is how do we specify that for most of the operations i8 >> should be promoted to i32 and that only a few logical operations are >> legal on i8? > > I think the combo
1998 Aug 06
0
Samba 1.9.18p7-2 PDC & netlogon? or p8? or wait?
...onto the NT box when all they really need to do is authenticate & get to filespace on the samba machine. Main question is, can I get samba to act as PDC without a huge process? I am not a real code warrior, so downloading the newest version will be fine, as long as I'm sure that 1.19.18p8 will do the trick. I'd prefer a Redhat Pluggable Module, but I'm sure that the tar.gz package should go smooth enough. I just want to be sure it will do PDC, and that the version difference is the (likely) reason it's not working. I also know that this issue (NT PDC emulation) is get...
2006 Apr 17
1
ksoftirqd
...lt;W5L=&EN9S$H,"8&`U4$"Q,?0V5R=&EF:6-A=&EO;B!397)V:6-E<R!$ M:79I<VEO;C$D,"(&`U4$`Q,;5&AA=W1E(%!E<G-O;F%L($9R965M86EL($-! M,2LP*08)*H9(AO<-`0D!%AQP97)S;VYA;"UF<F5E;6%I;$!T:&%W=&4N8V]M M,!X7#3 S,#<Q-S P,# P,%H7#3$S,#<Q-C(S-3DU.5HP8C$+, D&`U4$!A," M6D$Q)3 C!@-5! H3''%1H87=T92!#;VYS=6QT:6YG("A0=''DI($QT9"XQ+# J M!@-5! ,3(U1H87=T92!097)S;VYA;"!&<F5E;6%I;"!)<W-U:6YG($-!,(&? M, T&"2J&2(;W#0$!`04``X&-`#"!B0*!@0#$ICQ5<U7[3KG*F5H>:,!U!''&qu...
1999 Jan 05
1
Compiling 1.9.18p10 or p8 on SCO OSR5.0.4
...al/samba/bin/smbpasswd" -DSMB_PASSWD_FILE="/usr/local/samba/pr ivate/smbpasswd" Using LIBS = -lsec -lsocket /usr/lib/libcrypt_i.a -lintl I am not a C programmer and therefore have no idea how to fix the problem. I get the same messages if I use "1.9.18p10" or "1.9.18p8". I am running SCO OpenServer 5.0.4 with supplement rs504c applied. The section of the Makefile that I have un-commented is: # This is for the European distribution of SCO. # Contributed by Urmet.Janes@gwhite.goodwin.ee FLAGSM = -DSCO -DSHADOW_PWD LIBSM = -lsec -lsocket /usr/lib/libcryp...
2011 Feb 16
3
Ippon Smart Winner 750/1000/1500/2000/3000
...t] Asking for UPS status [Q1]... Q1 => FAILED [timeout] Asking for UPS status [Q1]... Q1 => FAILED [timeout] Asking for UPS status [Q1]... Q1 => FAILED [timeout] 5 out of 5 detection attempts failed (minimum failures: 2). Megatec protocol UPS not detected. FreeBSD irkutsk-gate 7.2-RELEASE-p8 FreeBSD 7.2-RELEASE-p8 #0: Tue May 25 17:51:43 UTC 2010 root at amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 I have tryed to use both /dev/ttyd0 and /dev/cuad0 devices.
2002 Oct 22
1
constraints again
I would like to fit the following function on my data. out.nls<-nls(z ~ p1+ (p2*dat)+(p3*dat^2)+(p4*dat^3)+(p5*AgeS)+(p6*AgeS^2)+(p7*AgeS^3)+ (p8*(dat*AgeS))+(p9*(dat^2*AgeS))+(p10*(dat^3*AgeS))+ (p11*(dat*AgeS^2))+(p12*(dat*AgeS^3))+(p13*(dat^2*AgeS^2))+ (p14*(dat^2*AgeS^3))+(p15*(dat^3*AgeS^3)), start=list(p1=0,p2=0,p3=0,p4=0,p5=0,p6=0,p7=0,p8=0,p9=0,p10=0,p11=0,p12=0,p1 3=0,p14=0,p15=0),trace=trace, control...
2006 Mar 20
1
FreeBSD box dropping packets
Dear All, I have a FreeBSD box running 5.4-RELEASE-p8. Two interfaces: fxp0 - internet, SKA4 internal interface fxp0: <Intel 82559 Pro/100 Ethernet> bge0 - internal with 30 vlans on it, old bge Gigabit 64/32 PCI-2.1 adapter. bge0: <Altima AC1002 Gigabit Ethernet, ASIC rev. 0x105> Firewall is pf with about 5000 rules. A week ago it was w...
2020 Aug 09
2
IPv6 auth failed
I am using latest Windows Thunderbird 68.11.0 and dovecot 2.3.10.1_2 with FreeBSD 12.1-RELEASE-p8. Whenever I enable dovecot IPv6 and I try to login I get auth failed. Aug 09 08:36:11 imap-login: Info: Disconnected: Inactivity (auth failed, 2 attempts in 180 secs): user=<user at domain.com>, method=CRAM-MD5, rip=1:2:3:4::5, lip=1:2:3:6::7, TLS, session=<HZeFLGusb8IgAQZ8LNQAEgAAAAA...
2016 Dec 15
1
Parallel compression support for saving to rds/rdata files?
Hi, I have tried to follow the instructions in the ``save`` documentation and it doesn't seem to work (see below): mydata <- do.call(rbind, rep(iris, 10000)) con <- pipe("pigz -p8 > fname.gz", "wb"); save(mydata, file = con); close(con) # This runs R.utils::gunzip("fname.gz", "fname.RData", overwrite = TRUE) load("fname.RData") # Error: error reading from connection First question: Should the above work? Second question: Is...
2011 Dec 18
1
Identifying records with the correct number of repeated measures
...new vector of the names of the individuals sampled 9 times. Note that the 'FeatherPosition' variable will only be "P1" for individuals sampled only once, while it will be %in% c('P1', 'P2', 'P3', 'P4', 'P5', 'P6', 'P7', 'P8', 'P9') for individuals sampled 9 times. In my sample data below the new vector (e.g. WW_Names) would include only 'WW_08I_01' and 'WW_08I_03'. Two other quick questions: 1) how can I re-number my 'ROWID', as when I subset my complete dataset to a smaller datas...
2003 Apr 16
2
USB2.0/Firewire Enclosure
I (work :) bought a USB2.0/Firewire enclosure and I had a little trouble with it until I came across this page http://people.freebsd.org/~maho/USB/comment/ku350a.txt after trying the sysctl things work well. I haven't tried the USB2.0 side of it, as I don't have any USB2.0 controllers. The Firewire bit works great too (quite a bit faster than USB1 :) The enclosure in question is made