search for: detail2

Displaying 3 results from an estimated 3 matches for "detail2".

Did you mean: details
2012 Aug 29
2
Deduping in R by multiple variables
...SAS I proc sort nodupkey it in seconds by 11 variables. I tried to do the same thing in R using both the unique & then the !duplicated functions but it just hangs there & I get no output. Does anyone know how to solve this? This is how I tried to do it in R: detail3 <- [!duplicated(c(detail2$TDATE,detail2$FIRM,detail2$CM,detail2$BRANCH, detail2$BEGTIME, detail2$ENDTIME,detail2$OTYPE,detail2$OCOND, detail2$ACCTYP ,detail2$OSIDE,detail2$SHARES,detail2$STOCKS, detail2$STKFUL)),] detail3 <- unique(de...
2005 Dec 24
2
Ajax Help: Multiple Updates - ?
..., :url => { :action => :updateDivs }) %>" > <option>Select a Person</option> <option>Select a Dog</option> <option>Select a Frog</option> </select> <br> <div id="detail1"> </div> <br> <div id="detail2"> </div> <br> <div id="detail3"> </div> <br> <div id="detail4"> </div> # controller def updateDivs render(:layout => false) end # updateDivs.rhtml <%= javascript_tag( update_element_function(...
2012 Aug 31
2
Conditional merging in R & if then statement
1)I am wandering how the following SQL statement can be written in R language w/o using sqldf: create table detail2 as select a.* from detail a, pdetail b where a.TDATE=b.TDATE and (a.STIM >= b.STIM and a.STIM <=b.MAXTIM) 2) when try if then in R it only applies to the 1st row & not to whole dataset like in SAS. How do you get round that? in SAS: data summary; set all1; if entry='...