search for: qc

Displaying 20 results from an estimated 420 matches for "qc".

Did you mean: cq
2012 Nov 09
5
using lapply with recode
...Sample Data mylist<-list(df1=data.frame(a=seq(1,10,1), prov=c(rep('QUE', 5), rep('BC', 5))), df2=data.frame(a=seq(1,10,1), prov=c(rep('Quebec', 5), rep('AB', 5)))) str(mylist) ###My current code lapply(mylist, function(x) { recode(x$prov, "'QUE'='QC' ; 'Quebec'='QC'") } ) ********************************* Simon J. Kiss, PhD Assistant Professor, Wilfrid Laurier University 73 George Street Brantford, Ontario, Canada N3T 2C9
2005 May 18
2
R -SQL
Hello, I've got a problem in a sql query! for(j in 1:length(criteria$Title)) { graphe_par<-sqlQuery(channel,"select q.type,crit.Title, r.Value from criteria crit, reply r,question_reply qr, question q, question_criteria qc, form_question fq where qr.reply=r.ID and qr.question=q.ID and qc.question=q.ID and crit.ID=qc.criteria and fq.question=q.ID and fq.form=4 and crit.Title=" & criteria$Title[j] &";") ............} > criteria$Title [1] Content Logistic Trainer...
2006 Jan 13
5
ads_connect: Program lacks support for encryption type
...service I'm not running? # Samba config file created using SWAT # from 0.0.0.0 (0.0.0.0) # Date: 2006/01/11 16:27:02 /etc/samba/smb.conf # Samba config file created using SWAT # from 0.0.0.0 (0.0.0.0) # Date: 2006/01/11 16:27:02 [global] workgroup = MYDOMAIN realm = MYDOMAIN.QC.CA bind interfaces only = Yes security = ADS username map = /etc/samba/smbusers log level = 1 printcap name = cups wins server = xxx.xxx.xxx.xxx ldap ssl = no idmap uid = 10000-20000 idmap gid = 10000-20000 template shell = /bin/bash...
2007 Oct 09
1
Handling two lists of matrices
I'm having trouble setting up the function call to handle two lists of matrices. Each list has 6 matrices - Each matrix is 20x10. I need to do some basic math on corresponding matrices in each list. Here are some outputs of these lists, etc... # first list > length(qc.pm) [1] 6 > dim(qc.pm[[1]]) [1] 20 10 > qc.pm[[1]][1:4,1:4] 441-JP071707.CEL 442-JP071707.CEL 443-JP071707.CEL 444-JP071707.CEL 495086 11923 9209 7980 10088 31276 6883 5577 3985 5561 6479 4730...
2016 Jul 01
1
silk_warped_autocorrelation_FIX() NEON optimization
Hi all, I'm sending patch "Optimize silk_warped_autocorrelation_FIX() for ARM NEON" in an separate email. It is based on Tim’s aarch64v8 branch https://git.xiph.org/?p=users/tterribe/opus.git;a=shortlog;h=refs/heads/aarch64v8 Thanks for your comments. Linfeng
2012 Mar 28
2
Data extraction
Dear ReXperts, I have the below text file output. I need to extract the T, QC, QO, QO-QC and WT columns for the data between T = 10 and T=150. Any ideas? Thanks in advance. ======================================================================================== 1 D C ---CAT-- T THETA QC QO QO-QC QC/QO WT FSD 8 1...
2005 Nov 06
2
"qc-usb" kernel module src.rpm for CentOs 4.2 compile issues
Hi Ignacio, I'm running Centos 4.2 on some machines and just wonder which is the correct procedure to build one of your packages i've fonund in the fedora.ivazquez.net for FC4 but for CentOs for kernel-modules: http://fedora.ivazquez.net/yum/4/i386/SRPMS.ivazquez/kernel-module-qc-usb-0.6.3-0.iva.1.src.rpm http://fedora.ivazquez.net/yum/3/i386/SRPMS.ivazquez/kernel-module-qc-usb-0.6.3-0.iva.2.src.rpm I've tried unsuccesfully (following dag's Faq for rebuilding against the current kernel): # rpmbuild --rebuild --define 'kernel $(uname -r)' --target $(uname -...
2019 Jun 24
2
Issue with dvd/cdrom drive
...m524288 at 0xc5700000 port 0xc5700200 irq 136 [ 1.879102] ata4: SATA max UDMA/133 abar m524288 at 0xc5700000 port 0xc5700280 irq 137 [ 2.183682] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300) [ 2.183825] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 7.183893] ata3.00: qc timeout (cmd 0xec) [ 7.183908] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x4) [ 7.183960] ata4.00: qc timeout (cmd 0xa1) [ 7.183974] ata4.00: failed to IDENTIFY (I/O error, err_mask=0x4) [ 7.488894] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 7.488931] ata4: SATA...
2016 Jul 14
6
Several patches of ARM NEON optimization
I rebased my previous 3 patches to the current master with minor changes. Patches 1 to 3 replace all my previous submitted patches. Patches 4 and 5 are new. Thanks, Linfeng Zhang
2005 Aug 31
1
Bioconductor and R-devel
Hi, I have built R (current development version) and BioConductor 1.7 with portland group compiler on a AMD Opteron. When I ran qc assessment on Affymetrix latin square data set, I got the following output, Loading required package: affy Loading required package: Biobase Loading required package: tools Welcome to Bioconductor Vignettes contain introductory material. To view, simply type: openVignette()...
2005 Jul 04
1
compare two lists with differents levels
Hi, I would like to compare 2 lists resulted from a sql query! bu there are different levels, so when I want to do: release1<-sqlQuery(channel,paste("select distinct c.ID,c.Title TitleCrit from category cat, category_criteria cc, criteria c, question_criteria qc, question q, form_question fq, form f, release_form rf, release r, product_release pr, product p where cat.ID=cc.category and cc.criteria=c.ID and c.ID=qc.criteria and qc.question=q.ID and fq.question=q.ID and fq.form=f.ID and f.ID=rf.form and rf.release=r.ID and r.ID=pr.release and pr.product=p.ID...
2018 Apr 08
2
suggested patch for messages
...should be in title case. Current version is: (xxx) In title case this would be: (Xxx) Hoping R core will see this here and magically adopt it, otherwise I'll try posting it to the r bugs site ... =================================================================== --- src/library/tools/R/QC.R (revision 74551) +++ src/library/tools/R/QC.R (working copy) @@ -7727,8 +7727,10 @@ "The Title field starts with the package name." }, if(length(y <- x$title_case)) { - paste(c("The Title field should be in title ca...
2014 Jul 06
0
request for "minor" fix to src/library/tools/QC.r
hi. i was hoping to automatically set the Version: number in my package description file (image2k-package.Rd) in the man directory by using a .in file in the same directory. "R CMD build" excludes the .in file because the routine .check_package_subdirs() in QC.R (which build calls) doesn't like that file. .check_package_subdirs() also checks files in R/, and at *that* point in the code says "now configure might generate files in this directory" and explicitly allows any files that end in .in. i wonder if that code could be duplicated for...
2019 Jun 24
0
Issue with dvd/cdrom drive
> > [ 2.183682] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300) > [ 2.183825] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300) > [ 7.183893] ata3.00: qc timeout (cmd 0xec) > [ 7.183908] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x4) > [ 7.183960] ata4.00: qc timeout (cmd 0xa1) > [ 7.183974] ata4.00: failed to IDENTIFY (I/O error, err_mask=0x4) > [ 7.488894] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300) > [...
2009 Apr 21
1
Quality control and possible QC in R book?
Dear R People: Is there a Quality Control in R book that would be accessible for undergraduates, please? I'm teaching a QC course in the fall semester and would be happy to have a Use R book or something like that, please. Thanks in advance, Erin -- Erin Hodgess Associate Professor Department of Computer and Mathematical Sciences University of Houston - Downtown mailto: erinm.hodgess at gmail.com
2004 Jan 28
1
Large data sets and memory management in R.
...I am wondering if someone having experience working with large data sets would share the configurations and options he is using. If that matters here is the model I was trying to fit. library(package = "statmod", pos = 2, lib.loc = "/home/jeg002/R-1.8.1/lib/R/R_LIBS") qc.B3.tweedie <- glm(formula = pp20B3 ~ ageveh + anpol + categveh + champion + cie + dossiera + faq13c + faq5a + kmaff + kmprom + nbvt + rabprof + sexeprin + newage, family = tweedie(var.power = 1.577,...
2013 Aug 28
1
Error when using buildVignettes()
...date = "October, 2011", author = "Christian Stratowa", outdir = file.path(getwd(), "TestQA"), ...) { ## directory containing parts of QAReport.Rnw indir <- file.path(path.package("xps"), "QC"); ## create directory containing final QAReport.Rnw if (!dir.create(outdir)) stop("could not create report directory"); if (!dir.create(file.path(outdir, "inst"))) stop("could not create report subdirectory 'inst'"); if (!di...
2012 Aug 25
0
qc-usb-0.6.6.tar.gz
Can someone make an rpm package for qc-usb-0.6.6.tar.gz on 2.6.18-308.el5.
2005 Jan 06
6
"labels" attached to variable names
...------------------------------ --------------------------- Denis Chabot, Ph.D. Chercheur en bio?nerg?tique Bioenergetics researcher Institut Maurice-Lamontagne Institut Maurice-Lamontagne P?ches et Oc?ans Canada Fisheries & Oceans Canada CP 1000, Mont-Joli, QC PB 1000, Mont-Joli, QC G5H 3Z4 G5H 3Z4 Canada Canada (418) 775-0624 (418) 775-0624 http://www.qc.dfo-mpo.gc.ca/iml
2008 Oct 23
1
join fails samba 3.2 & ADS 2003R2 SP2
Hi, SLES10 SP2 x86_64 + Samba from repo (samba-3.2.4-8.1) When I try to join (net ads join -U Administrator), I get : Failed to join domain: failed to set machine spn: Can't contact LDAP server My Pre-2000 domain name is CLSC_COTENEIGES My DNS ADS name is clsccdn.rtss.qc.ca DNS is ok, I've created an A/PTR record for linux box, ADS seems ok also (netdiag/dcdiag) i've tryied adding both servers into /etc/hosts... no results (upper case, lower case..) I've tryied a couple of things, like modifying my /etc/hosts, /etc/krb5.conf all seems ok.... When turn...