search for: c02

Displaying 18 results from an estimated 18 matches for "c02".

Did you mean: 02
2006 Apr 12
1
yet another problem with S4 dispatch (with setClassUnion)
...1.html I have been too quick in stating that >setClassUnion()---at least in my case---solves the problem; > The problem arises if I have a direct superclass "competing" with the new class generated by setClassUnion(); consider the following code: ## C00 mother class to C01 and C02 setClass("C00", representation(a="numeric"), prototype =c(a=0)) setClass("C01", representation(a="numeric",b="numeric"), contains= "C00") setClass("C02", representation(a="numeric",d="numeric"), contains= &quo...
2001 Jun 05
2
a bug? (PR#968)
...P 180 10 0 97 C01 CP1 CP 180 10 0 98 C01 CP1 CP 180 10 0 99 C01 CP1 CP 180 10 0 100 C01 CP1 CP 180 10 0 101 C01 CP1 CP 180 10 0 102 C01 CP1 CP 180 10 0 103 C01 CP1 CP 180 10 0 104 C01 CP1 CP 180 10 0 105 C01 CP1 CP 180 10 0 106 C01 CP1 CP 180 10 0 107 C01 CP1 CP 180 10 0 108 C01 CP1 CP 180 10 0 109 C02 CP1 CP 180 10 1 110 C02 CP1 CP 180 10 1 111 C02 CP1 CP 180 10 1 112 C02 CP1 CP 180 10 1 113 C02 CP1 CP 180 10 1 114 C02 CP1 CP 180 10 1 115 C02 CP1 CP 180 10 1 116 C02 CP1 CP 180 10 1 117 C02 CP1 CP 180 10 1 118 C02 CP1 CP 180 10 1 119 C02 CP1 CP 180 10 1 120 C02 CP1 CP 180 10 1 121 C02 CP1 CP 180...
2007 Oct 13
1
Controlling values in read.table
I have this code: list1 <- list() for (i in list.files(pattern=".*c02.*AFDH0.*")){ x <- read.table(i,skip=20,fill=TRUE) list1[[i]] <- x } Somehow I would like the read.table function to read only values in each file that are over a certain limit, say >1. Is this the easiest way or is it better to tamper with 'list1' when it's done? --...
2015 Sep 15
1
CentOS-6 - LogWatch
On Mon, September 14, 2015 21:28, Always Learning wrote: > > On Mon, 2015-09-14 at 14:51 -0400, James B. Byrne wrote: > >> The Logwatch imapd service script distributed with CentOS-6 does not >> generate anything when I run logwatch --service all on a cyrus-imapd >> host. Is this expected behaviour? Is there a separate script for >> cyrus-imapd or are their
2007 Sep 20
1
convert data from
Hi, I am trying to convert a data frame from: X1 X2 A 1 2 B 3 4 C 5 6 to: A01 1 A02 2 B01 3 B02 4 C01 5 C02 6. How can I do it in R? I appreciate your help. Zheng --------------------------------- [[alternative HTML version deleted]]
2013 Mar 01
0
Extracting coefficients of covariates in a LME-model
...) The first 5 rows of the data frame appeared as follows: head(Disembodiment) id comp comp.score delay.type sex age yrs.edu PLE fds bds 4 C01 Disembodiment 1.3846685 Synch f 56 14 0 8 6 5 C01 Disembodiment 0.3782303 Asynch f 56 14 0 8 6 12 C02 Disembodiment 1.4691870 Asynch f 48 15 0 12 11 16 C02 Disembodiment 1.5863690 Synch f 48 15 0 12 11 22 C03 Disembodiment -1.3751083 Asynch m 26 15 0 13 12 23 C03 Disembodiment -0.4114244 Synch m 26 15 0 13 12 I am at the poin...
2011 Nov 30
2
[LLVMdev] Problem using a label to a MachineBasicBlock
...--- NEW_MBB->setHasAddressTaken(); (void)llvm::BlockAddress::get(const_cast<BasicBlock*>(NEW_MBB->getBasicBlock())) --- With this, my basic example works as expected. Now, I want to try this on a more complex example: --- typedef int callme_t(int a, int b); callme_t* c01; callme_t* c02; int foo(int a, int b) { int result = c01(a,b); // MachineBasicBlock will be split at call instruction result += c02(a,b); // MachineBasicBlock will also be split at this call instruction return result; } --- This corresponds with: BB1 -> MBB10, MBB11, MBB12 where MBB11 and MBB12 have...
2007 Jul 30
4
how to combine data of several csv-files
Hello, I'm looking for a solution for the following problem: 1) I have a folder with several csv files; each contains a set of measurement values 2) The measurements of each file belong to a position in a two dimensional matrix (lets say "B02.csv" belongs to position 2,2 3) The size of the matrix is fix 4) I cannot assure to have a csv file for each position 5) Each position
2009 Mar 10
6
Pseudo-random numbers between two numbers
I would like to generate pseudo-random numbers between two numbers using R, up to a given distribution, for instance, rnorm. That is something like rnorm(HowMany,Min,Max,mean,sd) over rnorm(HowMany,mean,sd). I am wondering if dnorm(runif(HowMany, Min, Max), mean, sd) is good. Any idea? Thanks. -james
2019 Nov 22
0
sendmail on Centos 7.7
...s OK. grep gmail sendmail.* sendmail.cf:DSsmtp-relay.gmail.com sendmail.cf.bak:DSsmtp-relay.gmail.com sendmail.mc:define(`SMART_HOST', `smtp-relay.gmail.com') dnl host smtp-relay.gmail.com smtp-relay.gmail.com has address 64.233.176.28 smtp-relay.gmail.com has IPv6 address 2607:f8b0:4002:c02::1c service sendmail restart again - and same behavior going to relay 203.inbound-mx.org Jerry
2008 Oct 01
0
OT: C++ Newbie "Hello World" problem SOLVED
...d: Thank you! #2 was dead on. :-) [devel at dell2400 ~]$ ./a.out Hello, World! I am 8 Today! [devel at dell2400 ~]$ What I was lacking was the "./" in front of a.out the file produced when I compiled Hello.cpp :-) I will continue reading the book now! :-) Lanny //: C02:Hello.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Saying Hello with C++ #include <iostream> // Stream declarations using namespace std; int main() { cout << "Hello, W...
2009 Oct 30
0
Interpreting gnls() output in comparison to nls()
...5), exp(3.5)), C1 = c(-0.01, -0.01), C2 = c(0.01, 0.01)), + data = myPbmcData, + ) > > summary(nlsOut) Formula: lnCount ~ log(C0[Type] + C1[Type] * Time + C2[Type] * Time^2) Parameters: Estimate Std. Error t value Pr(>|t|) C01 33.82469 5.08870 6.647 3.08e-06 *** C02 209.40868 31.01673 6.751 2.51e-06 *** C11 -0.90447 0.58030 -1.559 0.13649 C12 -8.64779 3.73034 -2.318 0.03241 * C21 0.02775 0.01261 2.201 0.04102 * C22 0.29156 0.08975 3.249 0.00446 ** --- Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '...
2011 Feb 10
0
(o2net, 6301, 0):o2net_connect_expired:1664 ERROR: no connection established with node 1 after 60.0 seconds, giving up and returning errors.
...e=620 0 0 sysfs /sys sysfs defaults 0 0 proc /proc proc defaults 0 0 LABEL=SWAP-sda3 swap swap defaults 0 0 #3600508b4000a233c00006000010e0000 -> dm-0 /dev/mapper/mpath1p1 /c01 ocfs2 _netdev,datavolume,nointr,heartbeat=local 0 0 #3600508b4000a233c0000600001120000 -> dm-1 /dev/mapper/mpath2p1 /c02 ocfs2 _netdev,datavolume,nointr,heartbeat=local 0 0 #3600508b4000a233c0000600001160000 -> dm-2 /dev/mapper/mpath3p1 /c03 ocfs2 _netdev,datavolume,nointr,heartbeat=local 0 0 [root at rstnxsandb01 bin]# mounted.ocfs2 -d Device FS Stack UUID Label /dev/sdb1 ocfs2 o2cb 3A88FC23DBC34233BB175B056BC74...
2019 Nov 22
7
sendmail on Centos 7.7
Hi All, I am 'trying' to set SMART_HOST in sendmail to point to smtp-relay.gmail.com but when looking at the /var/log/maillog its going to mx203.inbound-mx.net. [192.110.255.243], why??? my line from sendmail.mc define(`SMART_HOST', `smtp-relay.gmail.com') I did make in /etc/mail and service sendmail restart This is the only SMART_HOST in the config file. I started with the
2013 Jan 09
4
Basic loop programming
Hi all, newbie question: I am trying to set up a very simple loop without succeeding. Let's say I have monthly observation of two variables for a year - Sales_2012_01, Sales_2012_02, Sales_2012_03, .... (total sales for jan 2012,feb 2012, etc.) - Customers_2012_01, Customers_2012_02, .... (total number of customers for jan 2012, etc.) and I want to create new monthly variables in
2015 Jan 28
5
Ajuste con exponencial
Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20150128/9e23caec/attachment.html>
2000 Jun 28
2
Colour depth reduced to 12 by bitmap devices
...#aaaaaa", # Col.250: R=G=B=170 "#bbbbbb", # Col.251: R=G=B=187 "#cccccc", # Col.252: R=G=B=204 "#dddddd", # Col.253: R=G=B=221 "#eeeeee", # Col.254: R=G=B=238 "#ffffff", # Col.255: R=G=B=255 ) -------------- next part -------------- C00 C01 C02 C03 C04 C05 C06 C07 C08 C09 C10 C11 C12 C13 C14 C15 R00 000 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 R01 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 R02 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 R03 048 049 050 051 052 053 054 055 056 057...
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list. I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without modifications. How did I try it? Created a (non-root) build environment (not a mock ) Installed the kernel.scr.rpm and did a rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee prep-out.log The build failed at the end: Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL Checking