Displaying 3 results from an estimated 3 matches for "rowntree".
Did you mean:
rountree
2006 Jul 12
7
Failure in comparisons
I''m basically a Ruby noobie.
At the moment I''m having a fair bit of trouble trying to figure out
what''s going wrong here (partial template):
<%=
@project = Project.find(@the_id)
if current_user.userid == @project.client
hidden_field ''messages'', ''recipient'', ''value'' =>
@project.project_manager
2007 Jul 30
2
Reading T and F as strings
Hi,
I am trying to read a series of stock tickers into R, and I'm running
into trouble with Ford (F) and the old AT&T (T). Read.table seems to
interpret these as boolean values instead of strings, even when I set
colColumns to a vector of character(0)'s. Is there a way to convince it
to read them as strings?
Thanks in advance for the help,
David
2006 Jul 17
4
Division not working!?!??
I guess you could call this a noobie problem as well. I''m trying to
divide two numbers by each other...
For example:
<% for element in project.elements %>
Element: <%= horizontal_bar_graph [element.name,
((element.completed_hours / element.hours) * 100)] %><br />
<% end %>
element.completed_hours == 2
element.hours == 5
(2 / 5) * 100 == 40
However,