search for: cnb

Displaying 20 results from an estimated 20 matches for "cnb".

Did you mean: cn
2003 Jan 03
1
Take care with codes()! (was type of representation)
...itle(main="Car by Color Popularity\n(Dot size proportional to popularity)") -Greg > -----Original Message----- > From: ripley at stats.ox.ac.uk [mailto:ripley at stats.ox.ac.uk] > Sent: Friday, January 03, 2003 1:53 PM > To: Warnes, Gregory R > Cc: 'allende at gredos.cnb.uam.es'; 'r-help at stat.math.ethz.ch' > Subject: RE: Take care with codes()! (was [R] type of representation) > > > From the help page of codes(): > > Normally `codes' is not the appropriate function to use with an > unordered factor. Use `unclass...
2003 Mar 08
0
RE: Text Rotation (was: Take care with codes()!)
...the call to text to increase ylim and change the plot location to give you more room. I'm working to update the 'balloonplot' function in the gregmisc package now to handle this case gracefully. -Greg > -----Original Message----- > From: Ramon Alonso-Allende [mailto:allende at cnb.uam.es] > Sent: Saturday, March 08, 2003 6:41 AM > To: Warnes, Gregory R > Cc: 'ripley at stats.ox.ac.uk'; 'r-help at stat.math.ethz.ch' > Subject: Re: Take care with codes()! (was [R] type of representation) > > > Hi > > I have been ussing this code di...
2003 Mar 08
0
RE: Text Rotation (was: Take care with codes()!)
...he plot location to give you more room. > > I'm working to update the 'balloonplot' function in the > gregmisc package now to handle this case gracefully. > > -Greg > > > > -----Original Message----- > > From: Ramon Alonso-Allende [mailto:allende at cnb.uam.es] > > Sent: Saturday, March 08, 2003 6:41 AM > > To: Warnes, Gregory R > > Cc: 'ripley at stats.ox.ac.uk'; 'r-help at stat.math.ethz.ch' > > Subject: Re: Take care with codes()! (was [R] type of > representation) > > > > > > Hi &...
2009 Oct 28
1
Is there a faster way to do it?
#Mdarts is a matrix 2343x788 #frequencia is a vector 2343x1 # 9 in Mdarts[fri,frj] stands for my missing values which i want to replace by the value in the vector frequencia Mdarts<-t(matrix(scan("C:/GWS/CNB/dartg.txt"),ncol=nindT,nrow=nm, byrow=T)) frequencia <- matrix(scan("C:/GWS/CNB/freq.txt"),ncol=1) for (fri in 1:nindT){ for (frj in 1:nm){ Mdarts[fri,frj] <- if (Mdarts[fri,frj] == 9) frequencia[frj] else Mdarts[fri,frj] Mdarts[fri,frj] <- Mdarts[fri,frj]/1-(frequencia[frj]...
2014 Sep 08
2
Samba4 AD -- Mac OS X clients uid:gid numbers not consistent
...=1465847454(redhat.linux) gid=157835854(MASS\Domain Users) groups=157835854(MASS\Domain Users),31839191(MASS\tex),38453246(MASS\pum),54847712(MASS\people),136070221(MASS\ice),611498342(MASS\prod),937332115(MASS\zip),943789798(MASS\lgo),1634451510(MASS\ao2),1777519165(MASS\swnartist),1907739953(MASS\cnb),1969236052(MASS\lite),2056039516(MASS\Domain Admins),79284988(MASS\tech),229719682(MASS\swnprod),389580424(MASS\cmm),413624907(MASS\ase_test),507063418(MASS\sup),511815653(MASS\sf1),12(everyone),62(netaccounts),885447622(MASS\AD_SUDO),1104925252(MASS\linuxproxy),1444867574(MASS\skp),1542738964(MAS...
2003 Jan 03
2
type of representation
Hi I have some data that i want to plot but i don't find how to do it. I have car types (bmw,renault,mercedes,seat ...), colors and a number for each car type-color relation.I want to come up with a matrix representation of cars vs colors where in each intersection i could set a dot proportional in size to my third variable. Can anybody give me a clue of hoe to come up with such
2006 Mar 18
0
No subject
...), # label value > col="black", # textt color > ) > > # put a nice title > title(main="Car by Color Popularity\n(Dot size proportional to popularity)") > > > -Greg > > > -----Original Message----- > > From: allende at gredos.cnb.uam.es [mailto:allende at gredos.cnb.uam.es] > > Sent: Friday, January 03, 2003 4:46 AM > > To: r-help at stat.math.ethz.ch > > Cc: allende at gredos.cnb.uam.es > > Subject: [R] type of representation > > > > > > Hi > > > > I have some data that...
2010 May 19
3
Strange case of partial matching in .[ - possible bug / wrong documentation?
...t;gg","hh","efg") > df["e",] a b NA NA NA So, it looks like partial matching is done using pmatch("e",rownames(df)) for "[". If this is true, the help page is not correct. Thanks ! Regards, Hilmar --- Hilmar Berger Integromics S.L. / CNB-CSIC Madrid, Spain [[alternative HTML version deleted]]
2005 Jul 01
0
how to ignore the arp request for the alias ip in freebsd
...ÑÅ»¢Ãâ·ÑGÓÊÏ䣭ÖйúµÚÒ»¾øÎÞÀ¬»øÓʼþɧÈų¬´óÓÊÏä From vova at fbsd.ru Fri Jul 1 13:12:10 2005 From: vova at fbsd.ru (Vladimir Grebenschikov) Date: Fri Jul 1 13:12:12 2005 Subject: how to ignore the arp request for the alias ip in freebsd In-Reply-To: <20050701122603.39773.qmail@web15509.mail.cnb.yahoo.com> References: <20050701122603.39773.qmail@web15509.mail.cnb.yahoo.com> Message-ID: <1120223522.1232.11.camel@localhost> ? ??, 01/07/2005 ? 20:26 +0800, shiner chen ?????: > I want only to ignore the arp request for alias ip ,at the same time I don't want disable the...
2007 Jan 30
5
how to join two arrays using their column names intersection
Dear all, I have a problem that may be someone of you can help. I am a newbie and do not find how to do it in manuals. I have two arrays, for example: ar1 <- array(data=c(1:16),dim=c(4,4)) ar2 <- array(data=c(1:16),dim=c(4,4)) colnames(ar1)<-c("A","B","D","E") colnames(ar2)<-c("C","A","E","B") > ar1
2007 Feb 14
2
font size in plots
Dear members of the list, it is likely a stupid question but I cannot find the information neither in R manuals nor in google. I am generating a plot (from hclust results) but I cannot see properly the labels because the default font size is too large. How can I change it? Thanks! Federico
2010 Mar 29
2
mcmcglmm starting value example
Hi R-users: Can anyone give an example of giving starting values for MCMCglmm? I can't find any anywhere. I have 1 random effect (physicians, and there are 50 of them) and family="ordinal"? How can I specify starting values for my fixed effects? It doesn't seem to have the option to do so. Thanks, Ping
2009 Mar 31
1
summarize logical string
Hello everyone, I am a newbie, working on a gene clustering problem, and I have problems in summarizing a logical string into number of repeats of each value. In other words, how could I obtain from 0 1 1 1 0 0 0 0 1 1 0 1 0 0 this: 1 3 4 2 1 1 2 so a string that gives me the number of repeated values, no matter zeros or ones. I've been diving in the manuals and the mailing list but,
2006 Jun 22
0
[Bug 488] New: Chain/Groupings of networks don't total pkts and bytes correctly
...ckets, 89753461 bytes) pkts bytes target prot opt in out source 6768749 3477337404 all -- * br0 0.0.0.0/0 6768749 3477337404 ADMIN-UP all -- * * 0.0.0.0/0 6768749 3477337404 CS-UP all -- * * 0.0.0.0/0 6768749 3477337404 CNB-UP all -- * * 0.0.0.0/0 6768749 3477337404 DMZ-UP all -- * * 0.0.0.0/0 6768749 3477337404 INSTRUCT-UP all -- * * 0.0.0.0/0 6768749 3477337404 PUBLIC-UP all -- * * 0.0.0.0/0 6768749 3477337404 SERVICE-UP all -- * * 0.0.0...
2006 May 30
2
problem about asterisk realtime.
hi, Longing for your help. I came into a problem ,Now I want to configure asterisk sip peers from MYSQL database dynamic, flolling the introduction of asterisk realtime,i set the cofiguration of sip users,but I need to cofigure sip peers too. Where I can find some infomation about cofiguring sip peers? What is the difference of configuration sip peers and configuration sip
2009 Apr 01
0
回复: R-help Digest, Vol 73, Issue 32
...@csiro.au)   94. Re: Convert Character to Date (Gabor Grothendieck)   95.  Package candisc (MarcioRibeiro)   96. [R-pkgs] data.table is on CRAN (enhanced data.frame for time       series    joins and more) (Matthew Dowle)   97.  Convert date to integer (thoeb)   98. summarize logical string (dbajic@cnb.csic.es)   99. Re: summarize logical string (Dimitris Rizopoulos)   100. Efficient calculation of partial correlations in R       (Schragi Schwartz)   101. how to increase the limit for max.print in R (pooja arora)   102. Row/columns names within 'assign' command (Steve Murray)   103. Re: s...
2008 Sep 22
1
R-help Digest, Vol 67, Issue 23
...ag 92019 Auckland New Zealand 64 9 3737599 x85392 paul@stat.auckland.ac.nz http://www.stat.auckland.ac.nz/~paul/ ------------------------------ Message: 45 Date: Mon, 22 Sep 2008 11:59:13 +0800 (CST) Subject: [R] Help for R To: r-help@r-project.org Message-ID: <339826.80972.qm@web15908.mail.cnb.yahoo.com> Content-Type: text/plain Dear R users£¬ I've just started learning R and I'm having a problem with it. I was told as following when I tried to run R: Error in loadNamespace(package, c(which.lib.loc, lib.loc), keep.source = keep.source) : in 'matlab'...
2009 Jul 09
2
How to Populate List
...t seem to figure it out. Any help would be great. Thanks, Amy     [[alternative HTML version deleted]] ------------------------------ Message: 110 Date: Wed, 8 Jul 2009 14:47:46 -0700 (PDT) Subject: [R] A Lattice Question To: r-help@r-project.org Message-ID: <823574.97362.qm@web15003.mail.cnb.yahoo.com> Content-Type: text/plain; charset=us-ascii To the Lattice expert - I am new to the lattice package and I would like to add a curve to the xyplot(). I know that I need to use panel function to add it. But it doesn't work. Is there anyone can help me out on how to transfer the d...
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...mp;Vy3mpu~a~p^9CE_T%-$ z6%x63{|*I(n21Z&|E^SoAV}EqPzb|>yIN42Fz4GPfobnrJeYULH59lYLpg|kC6gm9 zqNQMsfQ6O97xM)5q1K)W`Jtd8)sTruGAC&zDWq3^JI6+J0y6A!GUykI;;W+gYPyuG z#E9(ZEgg)}8 at 2Kl3o=&*_Sh=}DIqvkOB{@SBSdra8dx5+p+!=0Y?0)eE;O|6N*f`y zDchiFjV4Nw{@WB*_*5y_JVkTh6gf6k%FUtHbda~9U4#p5t8Tq#yU^@K6KCnB7ZIQZ z9 at 5aPu~OS2Mo3!dO(`@`4mJ<2l>93t2I44sY#<CCL&Y0-rMK9dWS8VmM>(%e`mZGc zvzS|_r9ibVUy{v3$Y!N53?Uh(ap!#o4^QXc=c@=>Nxvo46S+O*Tr#}u2w at i5HXtG( z&8SP^kqmqUWom$A3mVezq1Zbg(C*1{MDeP?JQ`q)(6G7*tFI<wp<p`t!QJV4uMyfn z(mD^#4FfWG9^}r0-gip+{i4DiOxoB<vi(4Ptt9)PYN2@@d$z_gUuzw...
2008 Jun 02
4
exit function in R?
Hi, This is likely an stupid question, but I cannot find the solution. I am searching for an "exit" function, to end the execution of an R script if some condition is not filled. Any clue? Thank you in advance! Federico