I want to store the output from many regression models including regression coefficients and information matrix from each model.
To store the results, it will be convenient if can use a data frame with two columns, one for the regression coefficients, and one for the information matrix. How can I create such a data frame?
res = data.frame(mu = I(matrix(0, m, n)), j = ???)
(It seems j should be an array in such a situation.)