search for: stav

Displaying 6 results from an estimated 6 matches for "stav".

Did you mean: stat
2007 Sep 24
1
partial plots for logistic regression using glm
Dear R users, I am modelling the probability of error in a behavioural task using the glm() function (with the numbers of successes and failures listed for each line in the data frame). How can I plot the partial effects of the predictors? Many thanks in advance, Stav
2010 Jun 09
1
counting across leves of factors
...=i3) for(i4 in levels(c$zam)){ d<-subset(c,c$zam==i4) for(i5 in levels(d$saman)){ e<-subset(d,d$saman==i5) for(i6 in levels(e$test)){ f<-subset(e,e$test==i6) for(i7 in levels(f$aktiv)){ g<-subset(f,f$aktiv==i7) for(i8 in levels(g$pocpartF)){ h<-subset(g,g$vekF==i8) for(i9 in levels(h$stav)){ i<-subset(h,h$stav==i9) for(i10 in levels(i$partner)){ j<-subset(i,i$partner==i10) for(i11 in levels(i$aktiv6)){ k<-subset(j,j$aktiv6==i11) for(i12 in levels(k$pocpart6F)){ l<-subset(k,k$pocpart6F==i12) for(i13 in levels(l$styk6F)){ m<-subset(l,l$styk6F6==i13) for(i14 in levels(k$...
2010 May 02
3
help with tapply or other apply
...002 prezen?n? Informatika B1801 obecn? informatika 3 4 10003 prezen?n? Informatika M1801 softwarov? syst?my 5 5 10004 prezen?n? Informatika B1801 obecn? informatika 2 6 10005 kombinovan? Informatika P1801 diskr?tn? modely a algoritmy 2 stav ukrok 1 zanechal 2002/2003 2 studuje 3 absolvoval 2008/2009 4 absolvoval 2005/2006 5 zanechal 2007/2008 6 zanechal 2004/2005 data$ukrok is a factor data$rocnik is numeric I want to create new column (data$z) and in this column have to be as.numeric(first 4 char of column(...
2002 Jul 30
1
OpenSSL Security Advisory [30 July 2002]
...to 0.9.7-beta3 or later. Recompile all applications using OpenSSL. Exploits -------- There are no known exploits for this vulnerability. References ---------- http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2002-0659 Acknowledgements ---------------- This vulnerability was discovered by Adi Stav <stav at mercury.co.il> and James Yonan <jim at ntlp.com> independently. The patch is partly based on a version by Adi Stav. The patch and advisory were prepared by Dr. Stephen Henson. Combined patches for OpenSSL 0.9.6d: http://www.openssl.org/news/patch_20020730_0_9_6d.txt Combi...
2009 Jan 15
2
collection_select not selecting default value
Hi, I''m trying to create a dropdown using collection_select. However, I cant seem to get it to select the right option by default. In my controller I have a setup like this: @content = Content.new @content.selection_id = 3 @selections = Selection.find(:all) In my view I have: <% form_for :content, @content, :url => { :action => ''create'' } do |f| %>
2008 Mar 30
3
Bignums, integers and migrations
Hi. I''m using a migration to extract data from one table, to another. In the process I also convert ip-adresses to integers, for insertion in the new table. Problem is that migrations doesn''t seem to handle large numbers very well. The conversion works fine from the script/console, but when running it from migrations only very low IP-ranges "make it thru".