similar to: I want to avioid unnecessary value

Displaying 20 results from an estimated 90 matches similar to: "I want to avioid unnecessary value"

2008 Dec 05
1
complex(?) reshaping question
Hello, I have a problem with data reshaping. Here's my data DF <- structure(list(idvar1 = structure(c(1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 2L), .Label = c("patient1", "patient2" ), class = "factor"), idvar2 = structure(c(1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 2L), .Label = c("dob", "hog"), class =
2013 Apr 14
2
[LLVMdev] is there any passes or compiling options that can aviod to generate vector instructions and 'select' instruction in IR
hi guys: is there any passes or compiling options that can aviod to generate vector instructions and 'select' instruction in IR. i think that these instructions can be replaced with other instructions in LLVM IR. So if there is a way to eliminate these instructions during compilation? -- View this message in context:
2013 Apr 15
0
[LLVMdev] is there any passes or compiling options that can aviod to generate vector instructions and 'select' instruction in IR
Hi, > is there any passes or compiling options that can aviod to generate vector > instructions and 'select' instruction in IR. > i think that these instructions can be replaced with other instructions in > LLVM IR. So if there is a way to eliminate these instructions during > compilation? you can avoid having optimizers create vector instructions by not running the
2013 Apr 14
1
[LLVMdev] llvm 'select' instruction
hi Sam: thank you for your reply. but i have another question about this 'select' instruction. i think that in LLVM IR, i can use a branch and two seperate assignments to replace 'select' instruction(am i right?). so is there any compiling option to aviod generate 'select' instruction? -- View this message in context:
2004 Jan 09
2
Problem with internal traffic
Have 4 harddrives hde,hdg etc all of these drives are mounted in samba. When i copy file from one drive to another i notice that server sends the file to my computer and then back to itself (into the right place). The file will be copied but doing so it will eat half of my network bandwith. Is it possible to aviod this? Best Regards Patrick Betfjord
1999 Sep 07
2
weird printing problems.
I'm experiencing some weird printing problems with samba connected printers. When I'll bring up a 95/98 workstation, sometimes it will say that the printer is offline, when it clearly isn't, or it will see everything fine, but it simply won't print. These are remote lpd connected printer to the samba server, and lpd can print fine. These are JetDirect HP printers. Any
2013 Apr 14
8
[LLVMdev] llvm 'select' instruction
hello guys: i am thinking about what kind of C instructions can turn into llvm IR 'select' instruction. i tried "d=a?b:c" and compiled it using clang, i still didn't get 'select' is there anybody who knows this? thank you -- View this message in context: http://llvm.1065342.n5.nabble.com/llvm-select-instruction-tp56719.html Sent from the LLVM - Dev mailing list
2013 Apr 14
1
[LLVMdev] llvm 'select' instruction
hi Clemens Hammacher: thank you for your helpful answer. but i have another question about this 'select' instruction. i think that in LLVM IR, i can use a branch and two seperate assignments to replace 'select' instruction(am i right?). so is there any compiling option to aviod generate 'select' instruction? -- View this message in context:
2002 Aug 02
1
avoiding "for()" loops: a question?
I have read in several places that one should attempt to avoid for loops whenever possible. In this spirit, I was playing with some code that I have written to improve its efficiency and elegance. The following iteratively drops a column from a data frame and applies a function to the reminaing columns. I replaced this for loop: for (y in 1:dim(x)[2]) my.function (x[,-y]) with this:
2010 Aug 21
2
t.tests on a data.frame using an apply-type function
I have a data.frame with ~250 observations (rows) in each of ~50 categories (columns). I would like to perform t.tests on subsets of observations within each column, with the subsets according to index vectors contained in other columns of the data.frame. My data.frame looks something like this: x<-data.frame(matrix(rnorm(200,mean=5,sd=.5),nrow=20)) colnames(x)<-c("site",
2006 Jul 10
6
Gruff: Display label vertical
Hi, I have stacked Bar graph which has about 20-30 items. I have to name each of these items. But there names/labels are overlapping. Is there any option to make the labels display vertical instead of horizontal? Any other ideas how can I aviod this overlapping? Please suggest. Thanks -- Posted via http://www.ruby-forum.com/.
2004 Dec 19
6
FW: Shorewall and selective access
Shoot! Sorry Tom. I thought I replaced your e-mail address with the shorewall list address. I got it working!!! I finally figured out what I was doing wrong. Pays to write down what I want to accomplish versus flying by the seat mof my pants. The ACCEPT+ is G R E A T! Took care of some of my issues along with removing the redirect rule (yeah, yeah...I should have thought it over more
2013 Apr 14
0
[LLVMdev] llvm 'select' instruction
Hi Dong, try turning optimizations on. I get the select then: > └─[$]› echo 'int min(int a, int b) { return a < b ? a : b; }' | clang -xc -O1 -S -emit-llvm -o - - > ; ModuleID = '-' > target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" >
2013 Apr 14
0
[LLVMdev] llvm 'select' instruction
On 04/14/2013 02:17 PM, Dong Chen wrote: > hello guys: > i am thinking about what kind of C instructions can turn into llvm IR > 'select' instruction. > i tried "d=a?b:c" and compiled it using clang, i still didn't get 'select' > is there anybody who knows this? > thank you Did you try to compile this with optimization enabled? (at least -O1) For
2013 Apr 14
0
[LLVMdev] llvm 'select' instruction
Hi, If you run the simplify-cfg pass, select instructions should get generated. Regards, Sam On 14/04/2013 14:17, Dong Chen wrote: > hello guys: > i am thinking about what kind of C instructions can turn into llvm IR > 'select' instruction. > i tried "d=a?b:c" and compiled it using clang, i still didn't get 'select' > is there anybody who knows this?
2007 Jun 13
2
Removing Inf and Inf values from a fata frame
Hi, I have a csv file with empty values, when I apply the different functions (mean, std, etc.) I create a new data frame, the empty values generate Inf and -Inf values. How can I remove those Inf and -Inf values from the new data frame? I already specified na.rm in the mean and std functions, but the values are still there. Thank you, Judith
2007 Nov 29
0
Doing PCA
Hi Fellow R enthusiasts I have managed to reshape my data using a much shorter script than before. Woohoo However now I have new problems. The code is below. There are no problems with the create matrix section. The problem code is highlighted in bold. I am trying to do PCA on the data. Here are the errors. Error1 code : OGSscaled = rangescale(OGS) error message : Error in dim(newX) <-
2013 Jul 02
2
PSON and JSON
HI, i''m currently trying to connect a rails app using the "her" gem/library (since active ressource is gone since rails 4) to Puppet''s REST API. Now, "her" or activeressource both speak json, while Puppet speaks pson, which should be nearly the same according to some posts here. Communication already works but it seems that the response objects are not
2011 Nov 22
3
SUMMARY: mounting datasets from a read-only pool with aid of tmpfs
Hello all, I''d like to report a tricky situation and a workaround I''ve found useful - hope this helps someone in similar situations. To cut the long story short, I could not properly mount some datasets from a readonly pool, which had a non-"legacy" mountpoint attribute value set, but the mountpoint was not available (directory absent or not empty). In this case
1999 Sep 09
1
SAMBA digest 2226
samba@samba.org ????????: > SAMBA Digest 2226 > >For information on unsubscribing see http://samba.org/listproc/ >Topics covered in this issue include: > > 1) RE: weird printing problems. > by "cbrink" <cbrink@allsportssupply.com> > 2) Re: weird printing problems. > by "John J. LeMay Jr." <jlemay@njmc.com> > 3) Connection