search for: part1

Displaying 20 results from an estimated 168 matches for "part1".

Did you mean: part
2002 Dec 22
4
pasting "\" into character strings
Dear R-Help, I'm using R version 1.6.0 on a Windows computer. I am trying to create a function that, among other things, constructs strings that refer to Windows files, e.g., I might want to construct a string like 'c:\work\part1.txt'. I have found that the following does not work. > paste("c:", "\", "work", "\", "part1.txt", sep="") Error: syntax error I'm guessing that R interprets "\" as some kind of special control character, and that th...
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 l...
2012 Dec 13
0
GLMM - lme4 - binomial family, quadrinomial data: Can one partition be response and another be dependent variable?
...ials and 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,fami...
2001 Jul 04
2
Assertion failure in ext3_prepare_write() at inode.c:934: "handle != 0"
...had no problems mounting without ext3. WCHAN shows __wait_on_buffer I just rebooted, after trying without success to use SysRq and avoid fsck. I'd wait and build 2.4.6, but my load average... Any umount -> D. Parallelizing fsck version 1.22 (22-Jun-2001) /dev/ide/host0/bus0/target0/lun0/part1 was not cleanly unmounted, check forced. /dev/ide/host0/bus0/target0/lun0/part1: Deleted inode 97249 has zero dtime. FIXED. /dev/ide/host0/bus0/target0/lun0/part1: Deleted inode 97304 has zero dtime. FIXED. /dev/ide/host0/bus0/target0/lun0/part1: Deleted inode 97513 has zero dtime. FIXED. /dev/i...
2010 Aug 01
3
Constructing arguments for plotmath
...text string but I would like 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 a...
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 o...
2012 Apr 13
5
Merging two data frames with different columns names
...lk", treatment.names = c("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]]
2009 Nov 01
2
CentOS Mirrored On RapidShare [Links Here]
...03 http://rapidshare.com/files/298850191/CentOS-5.3-x86_64-bin-7of7.zip.004 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 htt...
2012 May 14
4
Data read as labels
Hey guys, i have a strange problem reading a .csv file. Seems not to be covered by the usual read.csv techniques. 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)...
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...
2023 Mar 01
1
EL9/udev generates wrong device nodes/symlinks with HPE Smart Array controller
.../symlinks to the attached disks/raid volumes: (I didn't touch anything here but at 08:09 some 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...
2007 Nov 12
8
More failover issues
In 1.6.0, when creating a MDT, you could specify multiple --mgsnode options and it would failover between them. 1.6.3 only seems to take the last one and --mgsnode=192.168.1.252 at o2ib:192.168.1.253 at o2ib doesn''t seem to failover to the other node. Any ideas how to get around this? Robert Robert LeBlanc College of Life Sciences Computer Support Brigham Young University leblanc at
2014 Nov 26
0
Re: [PATCH v2 0/5] btrfs support part1: subvolume commands
On Wednesday 26 November 2014 17:04:03 Hu Tao wrote: > This is the part1 of improving btrfs support. This series adds missing > parameters to btrfs_subvolume_snapshot and btrfs_subvolume_create, and > adds two new API btrfs_subvolume_get_default and btrfs_subvolume_show. > > Other parts will follow. > > Regards, > Hu > > changes: > v2: &...
2008 Sep 02
1
R Newbie: quantmod and zoo: Warning in rbind.zoo(...) : column names differ
...t getSymbols returns a zoo objects whose index/first column is null. I write these data in a file and read it again using read.zoo; when I try to append to these data (using one more call to getSymbols) it throws this warning message. <code> library("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", heade...
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^...
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 0 0 0 ... I tried concatenating those with: > str(cbind(Part1$datase,Part2$dataset)) List of 6  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ...  $ : num [1:1600...
2003 Aug 27
2
vcut breaks song index ? XMMS search fails
...make sure it was the original OGG file which was corrupted, I tried it again with a different file. The problem was still there. <p>Here is a simple recipe to reproduce the problem (I do not say bug for I'm not sure it is one) : $ # Let orig.ogg be the original ogg file $ vcut orig.ogg part1.ogg rest.ogg 1000000 $ vcut rest.ogg part2.ogg part3.ogg 1000000 $ xmms part?.ogg part1.ogg and part3.ogg are "searchable", but part2.ogg isn't. It seems like the file containing the beginning and the end don't have the problem, but the middle files do. <p>I have searched...
2004 Mar 15
4
setting x-y axis at origin
Hello - I'm just getting into 'R' and am having trouble setting up the x-y axis to share (0,0). In the example posted here: http://geocities.com/chris_ciotti/Images/part1.pdf, each axis has a 0 which I do not want. Any help on getting a graph starting at (0,0) would be greatly appreciated. -- chris ciotti (chris_ciotti at yahoo.com) PGP ID: 0xE94BB3B7
2021 Jul 05
1
Problems with CentOS 8 kickstart
...oot 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 . lrwxrwxrwx. 1 root root 15 Jul 5 10:28 wwn-eui.002538b11102f46d-part1 -> ../../nvme0n1p1 lrwxrwxrwx. 1 root root 15 Jul 5 10:28 nvme-SAMSUNG_MZVL2512HCJQ-00BL7_S64KNE0R161810-part1 -> ../../nvme0n1p1 lrwxrwxrwx. 1 root root 15 Jul 5 10:28 nvme-eui.002538b11102f46d-part1 -> ../../nvme0n1p1 lrwxrwxrwx. 1 root root 10 Jul 5 11:07 dm-uuid-LVM-qQok4M7AOo1Tx...
2010 Dec 21
2
[PATCH] chain.c32: support chainloading GRUB2 core.img
...uot; of the - * Multiboot specification: - * http://www.gnu.org/software/grub/manual/multiboot/multiboot.html#Boot-information-format - * - * 0x208 = part3: sub-partition in sub-partition part2 - * 0x209 = part2: sub-partition in top-level partition - * 0x20a = part1: top-level partition number - * 0x20b = drive: BIOS drive number (must be 0) - * - * GRUB Legacy doesn't store the BIOS drive number at 0x20b, but at - * another location. - * - * Partition numbers always start from zero. - * Unused partition bytes must be s...