Help with TSSEM Problem encountered
Posted on
Kwabenaaaddo
Joined: 02/01/2021
| Attachment | Size |
|---|---|
| Data in CSV file | 663.52 KB |
| TSSEM codes | 2.94 KB |
Forums
Dear Forum (Mike),
I have been working on a TSSEM using R and encountering the error below, which I do not know how to address. I would be grateful if you could help me proceed with your suggestions and diagnosis. I have attached the data and R codes for your perusal.
Thank you so much for your help in advance.
Regards,
Kwabena.
Error:
> #### Running of Stage1 model
> stage1random <- tssem1(Cov=cordat, n=data$NUMBER.OF.BANKS, method="REM", RE.type="Diag")
> summary(stage1random)
Error in 1:(rsum * csum) : NA/NaN argument
In addition: Warning message:
In rsum * csum : NAs produced by integer overflow
N too big?
Hi Kwabena
It seems that the number of banks is very large, and the Ns are too. In particular,
The row sums and column sums are the same as this matrix is symmetric.
These numbers, when processed, seem to be too large for representation as integers in R:
Mike Chung may have ideas here, but what I'm wondering is if the meta analysis could be done piecemeal, i.e., meta-analyze manageable subsets of the datasets until all are done, then meta-analyze the results of these multiple meta-analyses. This is pure conjecture, I have no idea if this is a workable or suitable way out of your dilemma. Usually, having too much data is a nice problem to have.
Log in or register to post comments