search for: libby

Displaying 4 results from an estimated 4 matches for "libby".

Did you mean: bibby
2012 Oct 04
1
R help - Adding a column in a data frame with multiple conditions
...or [B] ([A] goes from 1:48). df$[E] <- ifelse((df$A == 1) & (df$B == "X"), df$C[df$A == 1], ifelse((df$A == 1) & (df$B == "Y"), df$D[df$A == 1], ifelse((df$A == 1) & (df$B == "Z"), df$C[df$A == 1], NA)))) Thank you for any advice you can give. Libby G libbymg[at]utexas.edu [[alternative HTML version deleted]]
2009 Jan 16
12
running a ruby expression stored in a database
Is this even possible? I''ve got a ruby expression stored in a database, it''s the code to run a plugin since I was having trouble passing variables stored in the database. When I try to call the code, it either outputs it as text, or doesn''t display it at all. It''s supposed to generate an image and display it. right now the code is stored in the database as:
2005 Jul 19
1
mac os x crashes with bioconductor microarray code (PR#8013)
Full_Name: Eric Libby Version: 2.1.1 OS: OS Tiger Submission from: (NULL) (65.93.158.117) I am trying to analyze microarray data of 42 human arrays. I typed in the following instructions: library(affy) Data <-ReadAffy() eset <- expresso(Data, normalize.method="invariantset", bg.correct=FALSE, pmcorrect...
2009 Apr 09
1
undefined method ''text'' ...
Just trying to run the example ***** require ''rubygems'' require ''mechanize'' a = WWW::Mechanize.new a.get(''http://rubyforge.org/'') do |page| # Click the login link login_page = a.click(page.links.text(/Log In/)) # Submit the login form my_page = login_page.form_with(:action => ''/account/login.php'')