search for: cmin

Displaying 20 results from an estimated 22 matches for "cmin".

Did you mean: cman
2011 Oct 13
3
nls: singular convergeance
...4,438.3807,453.9618,473.7764,493.0898,513.0759,531.1967,549.5310 ,564.8920,584.8651,670.3014,674.2099,677.9492,680.5667,684.3941,688.2404 ,690.7223,693.3406,697.9022,700.6606) trans <- 13.38 trans2 <- 28.53 estCd <- 1975 estConst1 <- 0.00115689 estExch <- 0.00171680 Cb <- 330.1 Cmin <- 357 Ci <- 101000 R <- 0.001104768 A <- 16 V <- 8 rismod <- nls(seg_an ~ crv5(t, R, exch, trans, trans2, Cd, const1, Cmin, Cb, A, V, Ci, Cmin.new), start = list(Cd = estCd, const1 = estConst1, exch = estExch), lower = c(100, 1e-05, 0), upper = c(50000, 1, 0.03...
2010 May 02
2
Calculation error
...l.pt <- wtkg * cl # compute CL (L/hr) k <- cl.pt/vd.pt # compute k (hr^-1) cave <- round((twhi - twlo)/log(twhi/twlo),2) doserate <- (cl.pt * cave)/F # maintenance dose (Dm) total_dose_tau <- round(doserate * tau,0) Cmax <- total_dose_tau/vd.pt Cmin <- Cmax * exp(-k * tau) AR <- 1/(1 - exp(-k * tau)) Cmaxss <- Cmax * AR Cminss <- Cmin * AR Cfluctss <- (Cmaxss - Cminss) Ct <- (Cmaxss * exp(-k * t)) dose_loading_vd <- round(Cmaxss * vd.pt,0) dose_loading_dm <- round(total_dose_tau * AR,0) options...
2005 Dec 17
9
How to clear sessions with cron?
Anyone got a quick code snippet I can add to my crontab? Since Rails doesn''t do any housekeeping, my /tmp directory just keeps getting fatter and fatter. I found this useless snippet in the Agile book: find /tmp/ -name ''ruby_sess*'' -ctime +12h -delete Fedora Linux complains about the ''h'' in 12h, then if you remove the ''h'' he
2011 Oct 05
4
SPlus to R
...nge should cover the + #    the value of cc that has expected power + # tol1   the allowance between the expceted power and target power + #--------------------------- + pc<-(0:((1-d)*nc))/nc + ncl<-length(pc) + ne.old<-ne + ne.old1<-ne.old + ### sweeping forward + for(i in 1:ncl){ + cmin<-cc[1] + cmax<-cc[2] + ### fixed cci<-cmax bug + cci <-1 + lhood<-dbinom((i:ncl)-1,nc,pc[i]) + ne[i:ncl]<-(1+(cci-1)*(lhood/lhood[1])) * ne.old1[i:ncl] + Ep0 <-Epower(nc, d, ne, pc, alpha) + while(abs(Ep0[i]-power)>tol1){ + if(Ep0[i]<power) cmin<-cci + else cmax<-cc...
2009 Jul 03
1
what happens with .~tmp~ after an interruption?
When run with --delay-updates rsync keeps changed files in directories .~tmp~ (or the name given with --partial-dir) in each directory until downloading is finished, then moves them to place and removes .~tmp~. If an interruption occurs, they're left as is and in the next run they'll be used to speed up the update and then moved. What happens if [some of] these files no longer exist in
2002 Aug 12
1
question about cloud() in lattice package
Hi all, I have been previously been using scatterplot3d package to create some graphs but unfortunately it does not allow me to rotate the plot on all three axis. The cloud() function in the lattice package does allow me to do so. When I was using scatterplot3d I was using a script (Shown Below) to calculate the mean, quartiles and range limits for all three axis and I was representing that on the
2011 Oct 20
2
Calculating differences
I have a table that looks like this: structure(list(speed = c(3,9,4,8,7,6), C = c(0.697, 0.011, 0.015, 0.012, 0.018, 0.019), house = c(1, 1, 1, 1, 1, 1), date = c(719, 1027, 1027, 1027, 1030, 1030), hour = c(18, 8, 8, 8, 11, 11), id = c("1000", "10000", "10001", "10002", "10003", "10004")), .Names = c("speed",
2008 Jun 09
4
Copying files from specific date.
Dear all, Does anyone aware of any utility to copy files which are created or modify form a specific date ?. Thanks Rajeev R. Veedu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20080609/ae761b2c/attachment-0002.html>
2017 Jun 18
2
About error bars on barplots
Hi R users, I have a question about adding uncertainty bars to stacked bar plots. DF: year A B C Amin Amax Bmin Bmax Cmin Cmax 2009 40 45 15 30 61 23 56 14 17 2010 36 41 23 26 54 22 51 22 24 I use the code below: DF.refm = melt(subset(DF[,c(1:4)]),id.vars='year',variable_name='Legend') fig1 = ggplot(data=DF.refm, aes(x=year,y=value...
2005 Aug 03
1
help for cell2nb and queencell in spdep package
...e nonzero weights: 32 Average number of links: 8 > neigh[1] [[1]] [1] 2 5 6 7 10 21 22 25 Is there way to index each element of neigh[1], i.e., the first is 2, the second is 5, ... ? Could you also give me an example of the function "queencell(rowcol, nrow, ncol, torus=FALSE, rmin=1, cmin=1)"? What's a rowcol? Thanks, Xiaohua -- Xiaohua Dai, Dr. Centre for Systems Research, Durban Institute of Technology P.O.Box 953, Durban 4000, South Africa [[alternative HTML version deleted]]
2017 Jun 18
0
[FORGED] About error bars on barplots
On 18/06/17 12:10, lily li wrote: > Hi R users, > > I have a question about adding uncertainty bars to stacked bar plots. > > DF: > year A B C Amin Amax Bmin Bmax Cmin Cmax > 2009 40 45 15 30 61 23 56 14 17 > 2010 36 41 23 26 54 22 51 22 24 > > I use the code below: > > DF.refm = melt(subset(DF[,c(1:4)]),id.vars='year',variable_name='Legend') > > fig1...
2015 Aug 11
3
libfuzzer questions
...xperience with libfuzzer and finding that I have a couple of questions: - How does libfuzzer decide to write a new test file? What distinguishes this one from all the other cases for which new test inputs were not written? Must be something about the path taken through the code? - Can I use afl-cmin or is there something similar for libFuzzer? I find that sometimes I get an enormous amount of tests and it becomes unmanageable. - sometimes my process being tested appears to deadlock. A common feature seems to be that AlarmCallback is allocating memory and as a consequence the ASan code is pe...
2005 Dec 18
1
session temp files?
I''m running a simple WEBrick server for a small rails website. I probably get less than 100 hits per hour. I just looked in /tmp on the server and there are over 10,000 ruby_sess.* temp files containing: " hash{" flashIC:''ActionController::Flash::FlashHash{: @used{ They''ve piled up so much that I can''t even rm -f ruby*. Bash complains
2008 Aug 22
0
Censored Poisson Data
...the form "2 events or more" or "less than 2 events" or even "1 or 2 events". Can anyone give me a hint whether this is already possible and how to do it? Data of the form (obstime is the observation time, "offset" in Poisson regression): obs obstime cmin cmax 1 1 2 Inf 2 2 0 1 3 1 1 2 and so on. Best wishes, Justine --
2004 May 26
1
append
Hello, I was testing the append function with a wrong amount of characters. The message I appended was saved in the tmp-folder. But even after I received the "BAD ..." message and after I disconnected, the message remained in the tmp-folder. Would it ever be deleted?
2015 Aug 11
3
libfuzzer questions
...n the control flow graph has been discovered with the > given input. > > So if I'm seeing tens of thousands of distinct test files, that represents tens of thousands of distinct edges? Does the CFG span functions/methods or are they scoped more sanely? > >> - Can I use afl-cmin or is there something similar for libFuzzer? >> > > I've never tried that. I'd expect you can. > libFuzzer and afl both use plain files to store the corpus. > > I think afl-cmin uses some afl-specific behavior. > I find that sometimes I get an enormous amount of te...
2007 Jul 26
7
noisy reports from cron {}
I''ve been using puppet for a while but I just recently decided to start using it to manage crontabs. It works great but puppet is reporting (and being very noisy about it) every time it does a run even when there is nothing in the actual crontab to change. I think this is happening because I''m setting defaults for the Cron type, which I should be able to do. Right? eg: Cron {
2016 Sep 08
2
[SOLVED] Re: Feature Request: what about "core stop panic" ?
...2.5 60332 26012 ? Ssl 16:00 0:03 /usr/sbin/asterisk -U root -G root -g # rasterisk # pkill -SEGV asterisk Then console showed: Segmentation error (core dumped) and a /core file is created I also tried with asterisk run asterisk user and group and looked for any newly created (find / -cmin -2) : nothing looking like a core file, though I might overlooked it. So, it really look like a configuration issue: "how to specify, with asterisk and systemd among others, where core files are dumped ?". I'll read again this thread advices and report back here. 2016-09-07 21:44 G...
1998 Jul 14
1
Different Forms of attack...
Question, there are the teardrop, ping of death, DoS and a host of other forms of attacks. While all of the research that I have been doing concerning another form of an attack.... I became sorta stumped on an idea... is there anywhere.... a description on what to expect or what happenes during any one of these or other attacks listed somewhere? If so, could someone please direct me in that
2012 May 26
1
I can't logon to the mail server using an NIS user account
...13:17:01 prisa-appserver CRON[1678]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly) May 26 13:39:01 prisa-appserver CRON[1775]: (root) CMD ( [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -depth -mindepth 1 -maxdepth 1 -type f -cmin +$(/usr/lib/php5/maxlifetime) ! -execdir fuser -s {} 2>/dev/null \; -delete) May 26 13:46:08 prisa-appserver dovecot: imap-login: Disconnected (auth failed, 3 attempts): user=<prisa>, method=PLAIN, rip=192.168.128.14, lip=192.168.128.15, TLS May 26 13:46:59 prisa-appserver dovecot: imap-lo...