search for: part2

Displaying 20 results from an estimated 125 matches for "part2".

Did you mean: part
2008 Jun 23
2
Pairwise Partitioning of a Vector
Hi, How can I partitioned an example vector like this > print(myvector) [1] 30.9 60.1 70.0 73.0 75.0 83.9 93.1 97.6 98.8 113.9 into the following pairwise partition: PAIR1 part1 = 30.9 part2 = 60.1 70.0 73.0 75.0 83.9 93.1 97.6 98.8 113.9 PAIR2 part1 = 30.9 60.1 part2 = 70.0 73.0 75.0 83.9 93.1 97.6 98.8 113.9 .... PAIR9 part1 = 30.9 60.1 70.0 73.0 75.0 83.9 93.1 97.6 98.8 part2 = 113.9 I'm stuck with this kind of loop: __BEGIN_...
2017 Nov 10
3
Postlogin script
...ituation (using script techniques) is for CIDR ranges just shy of a full octet boundary e.g. /25. You can use "cut -d .", "IFS=." or "expr" to break the IP into octets, then test the components. e.g. 12.34.56.0/25 # Example 1 PART1=`echo $IP | cut -d. -f1,2,3` PART2=`echo $IP | cut -d. -f4` [ "$PART1" = "12.34.56" -a "$PART2" -ge 0 -a "$PART2" -le 127 ] && exec "$@" # Example 2 PART2=`expr "$IP" : '.*\.\([0-9]*\)' expr "$IP" : "12.34.56." && [ &quot...
2012 Dec 13
0
GLMM - lme4 - binomial family, quadrinomial data: Can one partition be response and another be dependent variable?
...results looked pretty intriguing. So, I checked 14 genotypes (8 plants from each randomly chosen in the field) on 4 different dates and measured them under 2 different temperatures. As a response, I have 4 different partition of how light is absorbed in the leaf and they all add up to 1 (part1 + part2 + part3 + part4 = 1). So I have a data frame with these colums: plant | genotype | date | temperature | part1 | part2 | part3 | part4 So the logic tells me to keep it as simple as this: *model01*<- lmer(part1,part2,part3,part4~genotype:date:temperature+(1|plant),data=data,family=&quot...
2009 Apr 29
1
Newbie R question PART2
...lt.edu/rapache/ -Ista > ---------- Forwarded message ---------- > From: "Tena Sakai" <tsakai at gallo.ucsf.edu> > To: <ted.harding at manchester.ac.uk>, <r-help at r-project.org> > Date: Tue, 28 Apr 2009 15:04:53 -0700 > Subject: Re: [R] Newbie R question PART2 > Hi, > > Many thanks to Wacek Kusnierczyk and Ted Harding. > > I learned 3 new tricks. (Not bad for a newbie?) > > $ R --silent --no-save < barebone.R > $ R --quiet --no-save < barebone.R > $ R --slave < barebone.R > > With slight differences, they all...
2008 Sep 02
1
R Newbie: quantmod and zoo: Warning in rbind.zoo(...) : column names differ
..."quantmod") options(warn = 1) part1<-getSymbols(Symbols="USD/EUR", src="oanda", from="2008-01-01", to="2008-01-10", auto.assign=F, return.class="zoo") print(dimnames(part1)) write.zoo(part1,"USDEUR", col.names=T) # writes as part2 <- read.zoo("USDEUR", header=T) print (dimnames(part2)) # dinames or attributes part3<-getSymbols(Symbols="USD/EUR", src="oanda", from="2008-01-21", to="2008-01-31", auto.assign=F, return.class="zoo") print(dimnames(part3)) allpart...
2010 Aug 01
3
Constructing arguments for plotmath
...e to format the text string on the fly. The commands: plot(1,1) ARG <- bquote('TEXT'^'\u00ae') mtext(ARG, line=-2, side=1) yield the desired output. However, my goal is to paste together a string, then pass it to mtext. For example: plot(1,1) PART1 <- 'TEXT' PART2 <- '^' PART3 <- '\u00ae' ARG <- paste(PART1, PART2, PART3) mtext(bquote(.(ARG)), line=-2, side=1) ## bquote(ARG) also does not work This does not work -- the unprocessed string: TEXT ^ ? is printed. Obviously, I don't understand some aspect of passing arguments t...
2009 Nov 01
2
CentOS Mirrored On RapidShare [Links Here]
...04 CentOS 5.3 x86_64 NetIntsall ISO http://rapidshare.com/files/261817060/CentOS-5.3-x86_64-netinstall.iso CentOS 5.4 i386 CD Install (These are 200MB RAR parts) http://rapidshare.com/files/299998153/CentOS-5.4-i386-bin-1of6.part1.rar http://rapidshare.com/files/299999834/CentOS-5.4-i386-bin-1of6.part2.rar http://rapidshare.com/files/300043891/CentOS-5.4-i386-bin-1of6.part3.rar http://rapidshare.com/files/300055293/CentOS-5.4-i386-bin-2of6.part1.rar http://rapidshare.com/files/300094853/CentOS-5.4-i386-bin-2of6.part2.rar http://rapidshare.com/files/300106689/CentOS-5.4-i386-bin-2of6.part3.rar htt...
2012 May 14
4
Data read as labels
...ues. The relevant data i want to use, seems to be saved as the label of the data point. Therefore i can not really use it spec<-"EU2001" part1<-"http://www.bundesbank.de/statistik/statistik_zeitreihen_download.php?func=directcsv&from=&until=&filename=bbk_" part2<-"&csvformat=de&euro=mixed&tr=" tmp<-tempfile() load<-paste(part1,spec,part2,spec,sep="") download.file(load,tmp) file<-read.csv(tmp,sep=";",dec=",", skip="5") (relevant<-file[,2][1]) Thanks a lot for your help and you...
2012 Apr 13
5
Merging two data frames with different columns names
...uot;A","B","C")) d2 <- conf.design(c(1,1,1), p=2, block.name="blk", treatment.names = c("A","B","C")) rep1 <- c(550,669,633,642,1037,749,1075,729) rep2 <- c(604,650,601,635,1052,868,1063,860) part1 <- data.frame(d1,rep1) part2 <- data.frame(d2,rep2) d12 <- rbind(part1,part2) [[alternative HTML version deleted]]
2008 Mar 20
2
[LLVMdev] arm code generation
Hello, I'm trying to do the following and encountering problems with the generated arm assembly code: I've got an application in two parts that i've compiled into llvm bitcode using: llvm-gcc -emit-llvm -c part1.c -o part1.bc llvm-gcc -emit-llvm -c part2.c -o part2.bc Then I link them together: llvm-ld part1.bc part2.bc -o combined.bc Now I use the ARM backend via llc to generate the assembly for my target processor from combined.bc: llc -march=arm -mcpu=arm7tdmi combined.bc The problem is when I run the generated file (combined.s) through an...
2023 Mar 01
1
EL9/udev generates wrong device nodes/symlinks with HPE Smart Array controller
...ome symlinks were changed) /dev/disk/by-id/: lrwxrwxrwx 1 root root 9 Mar 1 07:57 scsi-0HP_LOGICAL_VOLUME_00000000 -> ../../sdc lrwxrwxrwx 1 root root 10 Mar 1 07:57 scsi-0HP_LOGICAL_VOLUME_00000000-part1 -> ../../sdc1 lrwxrwxrwx 1 root root 10 Mar 1 07:57 scsi-0HP_LOGICAL_VOLUME_00000000-part2 -> ../../sdc2 lrwxrwxrwx 1 root root 9 Mar 1 07:57 scsi-0HP_LOGICAL_VOLUME_01000000 -> ../../sdb lrwxrwxrwx 1 root root 9 Mar 1 08:09 scsi-0HP_LOGICAL_VOLUME_02000000 -> ../../sda lrwxrwxrwx 1 root root 9 Mar 1 07:57 scsi-0HP_LOGICAL_VOLUME_03000000 -> ../../sdd lrwxrwxrwx 1 root...
2008 Jun 23
1
How to access data structure (List of List)
Hi, I have this kind of output. > str(nw) List of 3 $ :List of 2 ..$ part1: num 30.9 ..$ part2: num [1:78] 60.1 70.0 73.0 75.0 83.9 ... $ :List of 2 ..$ part1: num [1:2] 30.9 60.1 ..$ part2: num [1:77] 70.0 73.0 75.0 83.9 93.1 ... $ :List of 2 ..$ part1: num [1:3] 30.9 60.1 70 ..$ part2: num [1:76] 73.0 75.0 83.9 93.1 97.6 ... My question are: 1. What kind of data structure is it...
2011 Jan 27
1
Errors in Integrate
Hello, I have written the function I would like to integrate in two ways: denfxn <- function(yy,vv,a2,b2,mu2) { pp <- 1-pnorm(yy/sqrt(vv)) part1 <- pp^(a2-1) part2 <- (1-pp)^(b2-1) part3 <- dnorm(yy,mu2,sqrt(vv)) return(part1*part2*part3) } denfxnorg <- function(yy,vv,a2,b2,mu2) { pp <- 1-pnorm(yy/sqrt(vv)) pp <- if (pp < .001) .001 else if (pp > .999) .999 else pp part1 <- pp^(a2-1) part2 <- (1-...
2013 Jan 22
1
Concatenate two lists, list by list
Dear all, I would like to concatenate the lists below str(Part2$dataset) List of 3  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ...  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ...  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ... str(Part1$dataset) List of 3  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ...  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ...  $ : num [1:16001] 0 0 0 0 0 0 0...
2014 Dec 12
0
Re: [PATCH v3 00/11] btrfs support part2: qgroup/quota commands
On Fri, Dec 12, 2014 at 03:03:22PM +0800, Hu Tao wrote: > Hi, > > This is v3 series to add support to btrfs qgroup related commands, inclduing > quota commands, and two leftover of subvolume commands. I really need to look at this in detail next week, especially the mount/umount helper functions in patch 01. However I did run the test suite, and it did pass, so that's a good
2021 Jul 05
1
Problems with CentOS 8 kickstart
...t3 -> ../../nvme0n1p3 lrwxrwxrwx. 1 root root 15 Jul 5 10:28 nvme-eui.002538b11102f46d-part3 -> ../../nvme0n1p3 lrwxrwxrwx. 1 root root 15 Jul 5 10:28 lvm-pv-uuid-5Dg4mg-saHa-hJJ6-n5a8-MxBS-gdFi-5jPoNn -> ../../nvme0n1p3 lrwxrwxrwx. 1 root root 15 Jul 5 10:28 wwn-eui.002538b11102f46d-part2 UNG_MZVL2512HCJQ-0-> ../../nvme0n1p2 lrwxrwxrwx. 1 root root 15 Jul 5 10:28 nvme-SAMSUNG_MZVL2512HCJQ-00BL7_S64KNE0R161810-part2 -> ../../nvme0n1p2 lrwxrwxrwx. 1 root root 15 Jul 5 10:28 nvme-eui.002538b11102f46d-part2 -> ../../nvme0n1p2 drwxr-xr-x. 2 root root 400 Jul 5 10:28 . lrwxr...
2009 Jun 21
1
Xen boots to blank screen
...t 8 ##YaST - generic_mbr gfxmenu (hd0,1)/boot/message ##YaST - activate ###Don''t change this comment - YaST2 identifier: Original name: linux### title openSUSE 11.1 - 2.6.27.7-9 (pae) root (hd0,1) kernel /boot/vmlinuz-2.6.27.7-9-pae root=/dev/disk/by-id/ata-Maxtor_7Y250M0_Y644WYHE-part2 resume=/dev/disk/by-id/ata-Maxtor_7Y250M0_Y644WYHE-part1 splash=silent showopts vga=0x31a initrd /boot/initrd-2.6.27.7-9-pae ###Don''t change this comment - YaST2 identifier: Original name: failsafe### title Failsafe -- openSUSE 11.1 - 2.6.27.7-9 root (hd0,1) kernel /boot/vmlin...
2021 Jul 05
3
Problems with CentOS 8 kickstart
...nvme0n1p3 > lrwxrwxrwx. 1 root root 15 Jul 5 10:28 nvme-eui.002538b11102f46d-part3 -> ../../nvme0n1p3 > lrwxrwxrwx. 1 root root 15 Jul 5 10:28 lvm-pv-uuid-5Dg4mg-saHa-hJJ6-n5a8-MxBS-gdFi-5jPoNn -> ../../nvme0n1p3 > lrwxrwxrwx. 1 root root 15 Jul 5 10:28 wwn-eui.002538b11102f46d-part2 UNG_MZVL2512HCJQ-0-> ../../nvme0n1p2 > lrwxrwxrwx. 1 root root 15 Jul 5 10:28 nvme-SAMSUNG_MZVL2512HCJQ-00BL7_S64KNE0R161810-part2 -> ../../nvme0n1p2 > lrwxrwxrwx. 1 root root 15 Jul 5 10:28 nvme-eui.002538b11102f46d-part2 -> ../../nvme0n1p2 > drwxr-xr-x. 2 root root 400 Jul...
2004 Sep 15
0
intermittent NT_STATUS_ACCESS_DENIED - part2
I sent this out yesterday and im still having this problem, has anyone seen this before? original email: Im having an intermittent problem with samba. Im running samba 3.0.2a on solaris 8 that i downloaded from sunfreeware.com I have my smb.conf setup to get passwords from my active directory server and it usually works fine. I ran a net join command like so to originally join the domain: root#
2010 Dec 21
2
[PATCH] chain.c32: support chainloading GRUB2 core.img
...ity version number major */ uint8_t compat_version_major; /* 0x207: compatibility version number minor */ uint8_t compat_version_minor; - /* 0x208: install_partition variable */ + /* 0x208 - 0x20b: install_partition variable */ struct { /* 0x208: sub-partition in sub-partition part2 */ uint8_t part3; @@ -1624,83 +1637,146 @@ int main(int argc, char *argv[]) uint8_t drive; } __attribute__ ((packed)) install_partition; - /* 0x20c: deprecated (historical reason only) */ + /* 0x20c - 0x20f: deprecated (historical reason only) */ uint32_t saved_entryno; /*...