I'm using Ben Jann's outstanding coefplot package for plotting regression estimates. I can't figure out, however, if there is a way to modify internal temporary variables before using them. Specifically, in the image below, I'd like to replace 0.000 with <.001 and 0.167 with .167. The code I've used to generate that example is below. It shows that I'm accessing @pval to get the P values for the estimates. I'd like to be able to reformat them before using them. Thanks in advance.
Partha

Partha
Code:
clear all sysuse auto replace weight = weight/100 glm price weight trunk , link(log) family(gaussian) estimates store coeff gen xlocation = .08 coefplot coeff, drop(_cons) addplot(scatter @at xloc, msymbol(none) mlabel(@pval) mlabf(%-5.3f) text(.7 .09 "P value"))
Comment