search for: sel

Displaying 20 results from an estimated 663 matches for "sel".

Did you mean: see
2010 Jun 02
8
bind select data frames
...ailyPL100420" "DailyPL100421" "dd" "i" "l" "PLglobal" "Pos100416" "Pos100419" "Pos100420" "Pos100421" "position" [13] "result" "sel" "Trad100416" "Trad100419" "Trad100420" "Trad100421" "trade" With "sel" the following element : sel <- c("100419", "100420", "100421") "DailyPL100419" , "DailyPL10...
2014 Mar 17
5
LD50
Quiero comparar varias dosis letales 50% (LD50) usando análisis probit. He seguido un ejemplo que viene en paquete DRC, pero no obtengo el resultado esperado. Lo que quiero es saber si las LD50s, son diferentes y si la diferencias son estadísticamente significativas. Gracias de antemano. José Arturo e-mail. jafarfan@uady.mx <grejon@uady.mx> e-mail alterno. jafarfan@gmail.com
2007 Jun 28
4
Sweave bug? when writing figures / deleting variable in chunk
...ubsequent figure-generating chunk 3. delete it at the end of that same chunk Then the Sweave driver chokes, not finding the variable name when generating the figure Example: % document bug2.Rnw \documentclass{article} \usepackage{Sweave} \begin{document} \SweaveOpts{eps=false} <<>>= sel <- 1:5 @ <<fig=T>>= plot(trees[sel,]) rm(sel) @ \end{document} Try to sweave: > Sweave("bug2.Rnw") Writing to file bug2.tex Processing code chunks ... 1 : echo term verbatim 2 : echo term verbatim pdf Error: no function to return from, jumping to top level Error in pl...
2010 Sep 22
0
bctrans: Box-Cox Transformation Problem
Hello, I'm currently trying to model the movement of a slope (v.obs) with a regression model. The data can be found following the given links: either http://www.sendspace.com/file/dnugwc or http://rapidshare.com/files/420569660/sel.day.txt I want to use the Box-Cox transformation to normalize the response as well as the predictor variables. The scatterplot looks like this: library(zoo) library(alr3) load("sel.day.txt") sel.p1<-window(sel, start=as.POSIXct("2008-04-05"), end=as.POSIXct("2009-04-...
2003 Jan 21
1
[R] proposal: lattice/levelplot: panel.catlevelplot
...z.min z.factor <- ( z - z.min + z.range * z.factor.min ) / ( z.range * ( 1 + z.factor.min ) ) z.x.factor <- if( prop.width ) z.factor else rep( 1, length(z) ) z.y.factor <- if( prop.height ) z.factor else rep( 1, length(z) ) # ---> fe.grid.rect <- function( sel, fill ){ grid.rect( x = x[subscripts][sel] , y = y[subscripts][sel] , width = wx[subscripts][sel] * z.x.factor[subscripts][sel] , height = wy[subscripts][sel] * z.y.factor[subscripts][sel] , defa...
2016 Nov 07
5
should we have IR intrinsics for integer min/max?
...s and vectorization that were discussed at the dev mtg last week, but let's start with the basics: Which, if any, of these is the canonical IR? ; ret = x < y ? 0 : x-y define i32 @max1(i32 %x, i32 %y) { %sub = sub nsw i32 %x, %y %cmp = icmp slt i32 %x, %y ; cmp is independent of sub %sel = select i1 %cmp, i32 0, i32 %sub ret i32 %sel } ; ret = (x-y) < 0 ? 0 : x-y define i32 @max2(i32 %x, i32 %y) { %sub = sub nsw i32 %x, %y %cmp = icmp slt i32 %sub, 0 ; cmp depends on sub, but this looks more like a max? %sel = select i1 %cmp, i32 0, i32 %sub ret i32 %sel } ; ret = (x...
2006 Jun 30
5
WG: OpenVPN question
..._______________ Von: shorewall-users-bounces@lists.sourceforge.net [mailto:shorewall-users-bounces@lists.sourceforge.net] Im Auftrag von Wilson Kwok Gesendet: Freitag, 30. Juni 2006 12:47 An: shorewall-users@lists.sourceforge.net Betreff: [Shorewall-users] OpenVPN question Shorewall have OpenVPN itself or need install OpenVPN for Shorewall to run ? Thank _______________________________________ YM - 離線訊息 就算你沒有上網,你的朋友仍可以留下訊息給你,當你上網時就能立即看到,任何說話都冇走失。 http://messenger.yahoo.com.hk Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated...
2008 Jun 18
1
reformatting R scripts for htmlize()
...like to convert into html pages (although if someone thinks that what I want to do is easier with latex or pdf, please tell me). Considering the format of my files, htmlize() seems the best option. The only problem is that I would need to write graphics to a file, thus converting parts like: plot(sel$hora, sel$COD_SP_C) #and check the time intervals plot(mishdift(sel$hora)) into: png("1.png");plot(sel$hora, sel$COD_SP_C);dev.off() #and check the time intervals png("2.png");plot(mishdift(sel$hora));dev.off() Any ideas on how to write an script (could be done in R itself?)...
2010 Nov 16
1
Force evaluation of variable when calling partialPlot
Greg, Two thoughts: 1. It might be possible that 'vars' is a reserved word of sorts and if you change the name of your vector RF might be happier 2. A way that works for me is to call importance as follows: sel.imp <- importance(sel.rf, class=NULL, scale=TRUE, type=NULL) and then use the 'names' of the imp data frame to be absolutely clear to RF you are talking about the same variables for(i in length(sel.imp){ partialPlot(sel.rf,xdata,names(sel.imp[i]),which.class=1,xlab=vars[i],main=&...
2006 Jan 31
24
Need help and advised
Hi folks Im currently doin firewall project.. the scenario is like this.. my application server open port number 3079 the server ip is 202.188.0.132. and now the port can be accessed from everywhere. Now i want to block all the everywhere accessed. But my problem is, the application will be accessed by few locations that doing transaction with the application server. and the said locations are
2007 Feb 02
5
reading very large files
Hi all, I have a large file (1.8 GB) with 900,000 lines that I would like to read. Each line is a string characters. Specifically I would like to randomly select 3000 lines. For smaller files, what I'm doing is: trs <- scan("myfile", what= character(), sep = "\n") trs<- trs[sample(length(trs), 3000)] And this works OK; however my computer seems not able to handle the 1.8 G file. I thought of an alternative way that not req...
2016 Nov 08
2
should we have IR intrinsics for integer min/max?
...cision to the backend. I'll wait to see if there are any other arguments presented. @max2 vs. @max3 is a straightforward commute that we should have been doing anyway, so I can start there. Assuming we go with @max3, we need to add something to DAGCombine to turn that back into @max1 (PPC w/ isel and AArch64 do better with @max1; x86 is the same). On Mon, Nov 7, 2016 at 2:47 PM, Hal Finkel <hfinkel at anl.gov> wrote: > > ------------------------------ > > *From: *"Sanjay Patel via llvm-dev" <llvm-dev at lists.llvm.org> > *To: *"llvm-dev" &lt...
2006 Oct 28
1
What determines the order of rows in a lattice barchart?
...art is in some order I can't determine. I originally tried rownames(twater)~twater$Cat, but the chart wasn't in rownames(twater) order either. library(lattice) twater<-read.csv("totalwater.csv",strip.white=T) twater$Cat<-ordered(twater$Cat,levels=(sort(levels(twater$Cat)))) sel<-twater$Cat=="A" nm<-sort(rownames(twater)) z<-factor(nm,levels=nm) chart<-barchart(z~twater$Volume, xlab="Volume of Water '000 ML", main="Water Use In Australia for Food", scales=list(col='dark green', cex=1.2,...
2012 Jan 09
1
plot, xlim to cut data set
Dear all, I would like to tell plot to limit the plotted area into values (for the x axis) that are from X1 to X2. I have tried to use xlim=c(X1,X2) inside plot.. but unfortunately this does only change the labeling of the xaxis and not the values plotted there. How I can do that in R? B.R Alex [[alternative HTML version deleted]]
2016 Mar 10
2
[CodeGen] PeepholeOptimizer: optimizing condition dependent instrunctions
...r. I've been fixing a bug in AArch64InstrInfo::optimizeCompareInstr: instructions are converted into S form but it's not checked that they produce the same flags as CMP. The bug exists upstream as well. Together with the fix I want to add some peephole rules for combinations CMP+BRC and CMP+SEL. In the context of optimizeCmpInstr I have all information about CmpInstr. I simply go down and check all instructions which use AArch64::NZCV whether they can be substituted with the simpler version. After all I delete CmpInstr. This approach contradicts with PeepholeOptimizer design because BRC a...
2007 Feb 09
26
transient "martian source ..." errors
...y all know :-) I''m trying to do the multi-isp thing. I''ve resolved my last issue with the route_rules as suggested by Tom and Jerry suggested. Lately I have been seeing "transient" (I say transient because the problem will persist for a while and then magically clear itself up some number of minutes later) situations where my gateway will log: Feb 9 17:23:45 gw.ilinx kernel: martian source 66.11.173.224 from 64.86.88.116, on dev eth1 Feb 9 17:23:45 gw.ilinx kernel: ll header: 00:a0:24:2a:1f:72:00:13:5f:07:97:05:08:00 but I''m not quite sure how to read...
2006 Sep 14
5
Shorewall make my firewall fly!
...----------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
2015 Feb 05
3
[LLVMdev] Proposal for Poison Semantics
...s about > one execution at a time) but on the other hand it tells us what happens for > real codes which Alive does not. Turns out that undef + fast math flags is enough to cause LLVM to become inconsistent: define i1 @f(i1 %a.is_nan, float %a, float %b) { %add = fadd nnan float %a, %b %sel = select i1 %a.is_nan, float undef, float %add %cmp = fcmp ord float %b, %sel ret i1 %cmp } When 'b' is NaN, the following occurs: %add = float undef %sel = float undef %cmp = i1 false However, the 'select i1 %A, %B, undef' -> 'undef' optimization permits us to tran...
2006 Feb 06
6
(no subject)
We had a running ipsec shorewall system to all of our remote offices. We added a dmz to the firewall and implemented proxy arp for that dmz. We have checked everything two or three times and cannot figure out why the vpns will no longer come up. We are using shorewall version 2.2.3 from the debian stable sarge distribution. We noticed the errata that for 2.0.0 there was a problem with proxy
2006 Feb 17
3
dansguardian+squid masquerading not working
...==== Linux Rocks ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642