Displaying 3 results from an estimated 3 matches for "flightnumb".
Did you mean:
flightnumber
2005 Nov 24
1
Log question
...They look like screen coordinates
and makes no sense in a text file.
Christer
Processing ReportController#create (for 127.0.0.1 at 2005-11-24
08:18:41) [POST]
Parameters: {"action"=>"create", "controller"=>"report",
"report"=>{"flightnumber"=>"XYZ789", "id"=>"", "description"=>"CIA
flight...", "flightdate(1i)"=>"2005", "flightdate(2i)"=>"11",
"flightdate(3i)"=>"24"}}
[4;35;1mReport Columns (0.07000...
2005 Nov 13
0
Problem with find and join (wrong id?)
This statement works correct in my controller (list action):
@reports = Report.find_by_sql("SELECT r.* FROM reports AS r INNER JOIN
Users AS u ON r.user_id = u.id WHERE " + cond + " ORDER BY
flightnumber, flightdate")
This statement does not:
@reports = Report.find(:all, :order => "flightnumber, flightdate",
:conditions => cond, :joins => "AS r INNER JOIN Users AS u ON
r.user_id = u.id")
All the ID:s in Show are the same for every record!
It seems u.id is used...
2013 Dec 17
1
ggplot2: stat_smooth for family=binomial with cbind(Y, N) formula
...y ~ x,
alpha = 0.2, size=2)
But how can I specify the formula for stat_smooth when the response is
cbind(successes, failures)?
The equivalent with plot (minus the confidence band) for the example I
want is:
data("SpaceShuttle", package="vcd")
> head(SpaceShuttle, 5)
FlightNumber Temperature Pressure Fail nFailures Damage
1 1 66 50 no 0 0
2 2 70 50 yes 1 4
3 3 69 50 no 0 0
4 4 80 50 <NA> NA NA
5 5...