Re: [R] GLM Model Summary

2018-10-16 Thread Marc Schwartz via R-help
> On Oct 16, 2018, at 12:33 PM, Neslin, Scott A. > wrote: > > R-Help: > > We are working with your GLM R package. The Summary(Model) now gets printed > by the program as one object and we want to put the coefficient columns into > Excel. We took an initial stab at this by counting the

Re: [R] GLM Model Summary

2018-10-16 Thread Amit Mittal
You can just use 'slotNames(modelname) This will return sub objects for which names can be extracted Eg slotNames(modelname) [1] "mfit" "model" names(modelname@mfit) names(modelname@model) Will return all objects within the model including coed car R cover vcov as applicable and you can store

Re: [R] GLM Model Summary

2018-10-16 Thread Peter Langfelder
The coefficients are best obtained as summary(Model)$coefficients. This is a matrix can than be saved as a csv file and opened in excel or other spreadsheet software. HTH, Peter On Tue, Oct 16, 2018 at 9:44 AM Neslin, Scott A. wrote: > > R-Help: > > We are working with your GLM R package. The

Re: [R] GLM Model Summary

2018-10-16 Thread Duncan Murdoch
On 16/10/2018 12:33 PM, Neslin, Scott A. wrote: R-Help: We are working with your GLM R package. The Summary(Model) now gets printed by the program as one object and we want to put the coefficient columns into Excel. We took an initial stab at this by counting the number of characters