Displaying 2 results from an estimated 2 matches for "modelds".
Did you mean:
model's
2006 Apr 02
1
Find and remove matching parentheses
To create a more end-user readable table captions for modeld, I would like
to get rid of the I(...) construct in formulae ("what's the hell does the
I(..) mean in the contrast table")
Example:
effect ~ I(sqrt(nitro))*treat + I(nitro^2)
should giv
effect ~ sqrt(nitro)*treat + nitro^2
In know, this is a dumb model, just my test case. As far I remember, finding
matching parentheses
2010 Sep 04
3
its easy but i forgot all
my models
borrower ----- has_many :loans
loan ----- belongs_to :borrower
my loans _controller
def new
@borrower = Borrower.find(params[:borrower_id])
logger.debug '' @borrower.id''
logger.debug @borrower.id
@loan = Loan.new
respond_to do |format|
format.html # new.html.erb
format.xml { render :xml => @loan }
end