search for: pcnt

Displaying 8 results from an estimated 8 matches for "pcnt".

Did you mean: cnt
2003 Mar 06
0
modifying ftable to allow percentages (wishlist) (PR#2606)
...e to allow percentages. It would be easy to do and backwards compatible. Percentage tables are useful in educational contexts, whereas lack of a simple method for calculating percentages gives an incorrect impression of the maturity of R IMHO. To add percentage tables to ftable, an option such as pcnt=c("n", "row", "column", "total","gtotal") could be added to ftable.default. Prior to the "y <- aperm" near the end of ftable, the following lines would be added: pcnt<-match.arg(pcnt) if (pcnt!="n") { if (pcnt=="...
2007 Apr 18
1
[Bridge] Ip traffic not bridged
...ut of the 7424 packets on the PREROUTING hook never appear at the POSTROUTING hook. (Though they can be seen on the FORWARD hook in both iptables and ebtables). linux:~ # ebtables -t nat -L --Lc Bridge table: nat Bridge chain: PREROUTING, entries: 1, policy: ACCEPT -s fe:fd:c0:a8:0:3 -j ACCEPT , pcnt = 7424 -- bcnt = 610120 Bridge chain: OUTPUT, entries: 1, policy: ACCEPT -s fe:fd:c0:a8:0:3 -j ACCEPT , pcnt = 0 -- bcnt = 0 Bridge chain: POSTROUTING, entries: 1, policy: ACCEPT -s fe:fd:c0:a8:0:3 -j ACCEPT , pcnt = 240 -- bcnt = 6720 linux:~ # I am using Suse 9.0 : linux:~ # uname -a Linux l...
2007 Jul 04
1
Long-tail model in R ... anyone?
...tion (x, N50, beta=1.0, alfa=0.49) { xx <- as.numeric(x) # as.numeric() prevents overflow Fx = beta / ( (N50/xx)^alfa + 1 ) Fx } # Read CSV file (rank, cum_value) lt <- read.csv(file="data.R",head=TRUE,sep=",") r <- lt$rank v <- lt$cum_value pcnt <- v/v[length(v)] *100 # get cumulative percentage plot(r, pcnt, log="x", type='l', xlab='Ranking', ylab='Cumulative percentatge of sales', main="Books Popularity", sub="The long-tail effect", col='blue') # Set some default values to...
2006 Jun 29
3
hotuser and hotkernel
...ons and modules. They sample, rather than trace (which can be both good and bad). Here is hotuser sampling functions from a gunzip command, # ./hotuser -c ''gunzip contents.gz'' Sampling... Hit Ctrl-C to end. FUNCTION COUNT PCNT libc.so.1`_free_unlocked 1 0.1% gunzip`unzip 1 0.1% ld.so.1`strcmp 1 0.1% gunzip`inflate_dynamic 1 0.1% libc.so....
2003 May 14
1
mcl models, percentages
I've put two packages for R on my home page at http://www.xs4all.nl/~jhckx/R/. The "pcnt" package is for multiway percentage tables. I've posted a first effort called "ctab" on this group and a request for enhancing "ftable" with percentages on the wishlist. The "mcl" package is for estimating multinomial logistic models using conditional logisti...
2015 Mar 23
0
KVM live migration i/o error
...msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm c onstant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 po pcnt lahf_lm dtherm tpr_shadow vnmi flexpriority ept vpid And those in the Dell server: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant _tsc pebs bts nopl pni dtes64 monitor ds_cpl vmx est cid...
2005 Oct 13
4
brouting on interfaces without IP address
Hi, [sorry for the crosspost, I don''t know whether this is a routing or ebtables problem] I want to redirect all HTTP traffic passing through my bridge to a squid proxy on another machine. However, setting up brouting as suggested in the ebtables examples doesn''t work and the packets get dropped on the floor completely. /\/\/\/\/\/\/\/\ +----------------------+
2008 Jan 18
33
LatencyTop
I see Intel has released a new tool. Oh, it requires some patches to the kernel to record latency times. Good thing people don''t mind patching their kernels, eh? So who can write the equivalent latencytop.d the fastest? ;-) http://www.latencytop.org/ -- cburgess at qnx.com