search for: rsg

Displaying 5 results from an estimated 5 matches for "rsg".

Did you mean: msg
2007 Nov 26
3
determine the number of digits printed into graph with "text(...)"
...below: "fraction" is my number. I wish to print only two digits of the number and struggle to do this... options(digit=3) does not work... Thank you for your suggestions! Cheers, Georg. ********************************** Georg Ehret Johns Hopkins Baltimore callrates<-read.table("RSG",col.names=c("variant","callrate")) hist(callrates[,2],breaks=100) fraction<-nrow(callrates[callrates$callrate>=0.9,])/nrow(callrates) hist(callrates[,2],breaks=100) text(0.4,500,"proportion of callrates >= 0.9:") text(0.4,450,fraction)
2001 Mar 12
1
wineserver: /home/xstaci/.wine/config is not a valid registry file
i get this message and looked through the docs.. i dont have a msdos partition but i do have an ntfs one. how do i setup the registry file can anyone help plz??? if you have a response e-mail me at xstaci@tampabay.rr.com
2001 Jun 19
1
winelib with a dll
Sorry to bug you all, but I want to know if I am trying to do something impossible. I am trying to use winelib to compile an exe that links to a dll, without compiling the dll under winelib (i.e. the equivalent of simply linking in the .lib). I have a win32 DLL project (hw5) that generates a hw5.lib, hw5.dll and hw5.h under M$. I have a win32 gui exe project (hw6) that includes hw5.h, links to
2001 Feb 12
3
win_patitions-access
Hello, I'm using dual boot system and have windows partitions on my disk. The problem is that I can't write to it as user (copy files etc). I'm also unable to chage permissions or owner. So wine can' access them. I looked up fstab man and related issues but still didn't find solution. Thanks in advance Serge Yastreilov
2008 Jun 04
5
controller filters running twice in 1.1.4?
since upgrading to 1.1.4 (I had been running without issue on a git snapshot), I''m noticing that my filter actions initiated from application.rb seem to be running twice. I created a test rails project with the rspec scaffold and am also seeing the same behavior here too. Adding this code to application.rb: before_filter :foo def foo "foo" end and an example