> 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 nu
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 pe
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 S
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
occupi
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
occupied by each column. But we have now learned that t
5 matches
Mail list logo