search for: short_title

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

2006 Apr 30
4
renamed partial won''t render?
...klist", :collection => @artist.works %> even though the partial _work.rhtml and _worklist.rhtml are identical. worklist.rhtml throws undefined local variable or method `work'' Extracted source (around line #2): 1: <tr> 2: <td><%= link_to work.short_title, :action => ''edit'', :id => work %></td> any ideas why? TIA DLG -- Posted via http://www.ruby-forum.com/.
2009 Jan 29
2
Adding vertical line to histogram and qplot "stacked" plot
R-users it appears I am leaning on your knowledge once again.  Is there any way to add a vertical line to a histogram and qplot "stacked" plot?  Here is my current attempt:   "qplot" approach attempt: qplot(Run, data = data_dataframe, breaks = breaks, fill = Temperature, main = short_title) + scale_x_continuous("Data") + scale_y_continuous("Freq") +  scale_fill_discrete("Temperature") + scale_fill_manual(values = c(LOW = "blue", AMB ="black", HIGH = "red")) +  geom_abline(v = HighVal, col = "dodgerblue3", lty=&quot...
2009 Jan 28
1
Changing histogram stack in qplot
... variables (characters not numeric) and I need to change from the default qplot colors to the following: Low = Blue Middle = black High = Red   Here is pseudo code of what I have currently:qplot(Run, data = TestData, breaks = hist_breaks, ,            fill = TestData$Temperature,           main = short_title) +           scale_x_continuous("Run, Radians") + scale_y_continuous("Frequency") +           scale_fill_discrete("Temperature")   Thanks for any advice and insights.     [[alternative HTML version deleted]]
2009 Jan 28
2
t.test in a loop
Hi All, I've been having a little trouble with creating a loop that will run a a series of t.tests for inspection, Below is the code i've tried, and some checks i've looked at. I've used the get(paste()) idea as i was told previously that the use of the eval should try and be avoided. I've run a single syntax to check that my systax is correct and works without any problems