Displaying 2 results from an estimated 2 matches for "nsunit".
Did you mean:
lsunit
2007 Jun 21
2
Multinomial models
Hello,
I am VERY new to R (one week) and I am trying to run a multinomial logit model.
The model I am using is
> model1 <- multinom(Y ~ X1 + X2 + , ..., Xn)
if I put in
> summary(model1)
I get
#Error in function (classes, fdef, mtable) :
unable to find an inherited method for function "fitted", for
signature "multinom"
and if I put in
> coef(model1)
2011 Jun 30
0
help with interpreting what nnet() output gives:
Greetings list,
I am new to programming in R, and am using nnet() function for a project on
neural networking.
Firstly I wish to ask if there is any pdf explaining the algorithm nnet
uses, which could tell me what the objects of the nnet class, like 'conn',
'nconn, 'nsunits', n and 'nunits' mean, and how weights are calculated.
The package pdf has little or no explanations, and the C +R source code
availabe at CRAN is too difficult to comprehend. Can anyone please help?
Also, i wish to know how the *number* of weights is calculated. When the
nnet() comma...