Hi everyone,
I was wondering whether anyone knows what's the maximum number of coefficients' decimals Stata can compute and (store) from the OLS regressions?
Specifically, after the regression, I need to extract the coefficients for other purposes (see code below as an example). Currently, the coefficients are up to 17 decimals in e(b). However, I'd like to have the coefficients as many as 64 decimals, if possible.
I've tried to
, and it didn't help. set cformat [fmt] does not allow me to do something like
.
Any background knowledge, ideas, and suggestions are highly appreciated! Thank you very much for your time and help!
Best,
Xiao
I was wondering whether anyone knows what's the maximum number of coefficients' decimals Stata can compute and (store) from the OLS regressions?
Specifically, after the regression, I need to extract the coefficients for other purposes (see code below as an example). Currently, the coefficients are up to 17 decimals in e(b). However, I'd like to have the coefficients as many as 64 decimals, if possible.
Code:
reg OccChoice ibn.MajorCategory OtherControls if OccChoiceSet == 1, noc robust matrix list e(b) matrix b=e(b)' svmat double b, n(beta_1)
set type double, permanently
set cformat %64.64g
Any background knowledge, ideas, and suggestions are highly appreciated! Thank you very much for your time and help!
Best,
Xiao
Comment