search for: manner

Displaying 20 results from an estimated 4814 matches for "manner".

2011 May 10
1
specifying scales in lattice xyplot makes the lines disappear?
I have a dataframe concerning manner of death from death certificates, from 2005 to 2009 inclusive, with the following structure: > str(MannerYoung.plot.data) 'data.frame': 245 obs. of 4 variables: $ year : Factor w/ 5 levels "2005","2006",..: 1 2 3 4 5 1 2 3 4 5 ... $ manner : Factor...
2004 Sep 08
5
a little question about R
Hello,sir: Here's a little question about R which needs your help.Thanks in advance. If I wanna make a sequence just like a,b,c,d (In other words,a vector consists of 4 characters :a,b,c,d ).How can I do it in a shortcut manner? Yes,I can do it as following: c("a","b","c","d") and the result is:[1] "a" "b" "c" "d". But I remember there's a shortcut manner to do the same thing,something like c("a":"d").But the system sa...
2010 Jul 18
2
[LLVMdev] How to traverse Dominator Tree in pre-order manner
Hi, Can anyone tell me how to traverse Dominator tree in pre-order manner? Regards, Chayan
2011 Aug 16
2
how to get the result in "short cut" manner?
...d2 result<-matrix(,0,2) g<-split(sleep,sleep$group) for(i in 1:length(g)) { result<-rbind(result,data.frame(unique(g[[i]]$group),mean(g[[i]]$extra))) } colnames(result)<-c("name","mean") But the above 2 method is a little bit tedious.Is there a "short cut" manner to get the same result? Thanks a lot! My best [[alternative HTML version deleted]]
2010 Jul 19
0
[LLVMdev] How to traverse Dominator Tree in pre-order manner
Chayan Sarkar wrote: > Hi, > > Can anyone tell me how to traverse Dominator tree in pre-order manner? > In previous versions of LLVM, I believe you could get some sort of Node object from DominatorTree and then use a method to get the children of the Node (and then use a method of the Node to get the BasicBlock held in that Node). However, I don't see such a method in the doxygen do...
2010 Jul 19
1
[LLVMdev] How to traverse Dominator Tree in pre-order manner
On Mon, Jul 19, 2010 at 7:49 AM, John Criswell <criswell at uiuc.edu> wrote: > Chayan Sarkar wrote: >> Hi, >> >> Can anyone tell me how to traverse Dominator tree in pre-order manner? >> > > In previous versions of LLVM, I believe you could get some sort of Node > object from DominatorTree and then use a method to get the children of > the Node There is a iterator that can be used to walk children. > (and then use a method of the Node to get the BasicBloc...
2009 Feb 04
1
How to hack a mongrel cluster to restart in an alternating manner?
Hello, I''ve been trying (unsuccessfully) to hack my mongrel_cluster to re-ststart in an alternating manner. Specifically, this soluiton: http://blog.carlmercier.com/2007/09/07/a-better-approach-to-restarting-a-mongrel-cluster/#content Which means I an call to mongrel_rails cluster::restart to do this: mongrel_rails start 8001 mongrel_rails stop 8001 mongrel_rails start 8002 mongrel_rails stop 8002...
2020 Jul 04
1
Proper manner to join second DC
In re-reading the "Joining_a_Samba_DC_to_an_Existing_Active_Directory" Sambawiki page. Is it no longer necessary to manually delete all *.tdb and *.ldb database files from the soon to be joined (second) DC prior to joining? Are these database file deletions NOW "handled" by any one of the "three authentication methods you can use" to join the second DC? (With
2005 Aug 10
0
Plit result of pairs in an Sweave compatible manner
Hi, I want to use "pairs" on a fairly big matrix, say more than 30 columns. R tries to fit this on one page, which results in tiny invidual rectangles, and dots are hard to see. Is there a way to transform the output of pairs in a way that subplots of 10*10, say, rectangles are generated. These subplots should then go to Sweave which is accepting one figure at a time presently.
2006 Mar 24
1
how to add list to a list in iterative manner without mixing content
I have a function that generated list and then from those I need to do some repeated calculation. So I was thinking to put them in another list and call them one after the other. Given that I have 20 of those it was a bit annoying to typing all of them in one command. So I need something to do a recursive addition of a list objet to a list here a small size example A<-list()
2009 Jul 30
1
files not showing up in an nfs mounted filesysetm in timely manner
We have and nfs mount from a windows pc nfs server. A file is created on the server, but can take as long as 50 seconds to become available on the client. We are running Centos 5.2 (final), using NFS version 3. Is there anything we can do from the client side to see the file more quickly. The files are very small, usually about 1k _____________________________________ "He's no
2013 Feb 26
1
Could R help with locating coordinates in a serial manner?
Dear R community, My question is not a quick fix one but it would be helpful if you have any advice for me. I have a large data set of many locations in the US and all of these locations are expressed in coordinates (longitudes and latitudes). I need a tool which returns the state that each location is situated in. So the program should return me a vector of state names (eg. NY,CA,OH, etc).
2015 Aug 26
2
Proof of samba 4 ad storing passwords in a secure manner
On Wed, 2015-08-26 at 13:15 +0300, Krutskikh Ivan wrote: > Thanks, that helped me a lot =) But it doesn't seem that sam.ldb > holds any password data. I found something similar in file (my domain > is NOVO.MTT) > > /usr/local/samba/private/sam.ldb.d/DC=NOVO,DC=MTT.ldb Correct, the sam.ldb is a wrapper that loads modules which in turn loads the other files, which actually
2018 May 30
0
Evaluation failure of IAPWS95 functions in a rowwise manner (tidyverse style)
Hi Shawn, I don't think it has anything to do with the tidyverse. If you keep simplifying your example you'll get all the way down to > DTp(T=c(279,294),p=c(0.46,0.46)) [1] 1000.12283 --Ista On Wed, May 30, 2018 at 2:14 PM, Shawn Way <SWay at meco.com> wrote: > I'm trying to use the IAPWS95 package with the tidyverse packages. For some reason, the function is not
2012 Dec 27
3
Retrieve indexes of the "first occurrence of numbers" in an effective manner
Hi, That sounds simple but I cannot think of a really fast way of getting the following: c(1,1,2,2,3,3,4,4) would give c(1,3,5,7) i.e., a function that returns the indexes of the first occurrences of numbers. Note that numbers may have any order e.g., c(3,4,1,2,1,1,2,3,5), can be very large, and the vectors are also very large (which prohibits any loop). The best I could think of is: tmp =
2010 Jan 14
5
[LLVMdev] Presenting Unsafe Math Flag to Optimizer
Hi all, A quick question: The current implementation of the "allow unsafe math" option is to specify it via the TargetOptions object. However, this prevents the target-independent optimizer from using it. Are there any opinions (ha!) on how this could be achieved in a nice clean manner which doesn't require using the TargetOptions object in the optimizer? -bw
2015 Aug 26
0
Proof of samba 4 ad storing passwords in a secure manner
Thanks, that helped me a lot =) But it doesn't seem that sam.ldb holds any password data. I found something similar in file (my domain is NOVO.MTT) /usr/local/samba/private/sam.ldb.d/DC=NOVO,DC=MTT.ldb 2015-08-26 5:30 GMT+03:00 Andrew Bartlett <abartlet at samba.org>: > On Tue, 2015-08-25 at 20:08 +0100, Rowland Penny wrote: > > On 25/08/15 19:42, Krutskikh Ivan wrote: >
2009 Feb 28
0
Most productive manner of building custom xen packages
Howdy.. I've been doing a lot of experimental work with Xen 3.3.1 and a SuSE-based Linux 2.6.27 kernel, as well as 2.6.28-based pvops dom0 support, on Ubuntu 8.10. [hold the tomatoes and read on, please] I did some basic work to save myself some time with kernel-package, and by adapting the debian/ files from the Ubuntu 8.10 xen-3.3 source package, which is a bit crippled. I looked into
2003 Jul 15
12
Sanity, Manners and Shorewall Support
...a much loved pet, my own health problems, and a new job which presents me with a fresh set of demands each day. Given this set of circumstances, I''m afraid that I sometimes regard a Shorewall support request as just one more $PROFANITY problem that someone expects me to solve and often my manners fail me. So what to do... I''m going to try simply letting requests go unanswered until I have sufficient time to read each post carefully and deal with it properly. This may increase the response time but a delayed polite response is definitely preferable to a quick rude one. And of c...
2005 Oct 18
4
Easiest virtual mail setup?
Hi. I wish to configure a CentOS 4.1 box to be a mail server. I'd like a setup with virtual mail accounts, using eg. exim, courier and mysql. Do any applications exist that already combine this in an easy to deploy manner (yum as far as possible)? I've seen XAMS.org but that's discontinued. Br, Morten