Displaying 2 results from an estimated 2 matches for "plantuser".
Did you mean:
plantuses
2006 Nov 04
0
Rails newbie - can anyone please help with many to many NoMethodError
...has_and_belongs_to_many - plus it didn''t work :().
::user.rb starts:-
class User < ActiveRecord::Base
has_many :Plants, :through => :plants_users
...
::plant.rb is:-
class Plant < ActiveRecord::Base
has_many :Users, :through => :plants_users
end
::plant_user.rb is:
class PlantUser < ActiveRecord::Base
belongs_to :user
belongs_to :plant
end
::plant_controller.rb is
class PlantController < ApplicationController
before_filter :login_required
scaffold :plant
def list
@plants = @session[''user''].plants
end
end
So far so good (I think), but when I...
2003 Aug 04
1
hclust() and agnes() method="average" divergence (PR#3648)
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_000_01C35A53.75780090
Content-Type: text/plain;
charset="iso-8859-1"
Anyone have a clue why hclust() and agnes() produce different results in the
example below when both use method="average"?? I'm not able to reproduce