Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • esttab with the error " in range not allowed" r(101);

    The code is as following, Why did this error occur, thanks
    esttab m s, nogap compress replace ///
    mtitle("OLS" "OLS" "Probit" "Probit") ///
    b(%4.3f) t(%4.2f) ///
    scalar(N r2) ///
    star(* 0.1 ** 0.05 *** 0.01) ///
    drop(*.*) ///
    noomit nobase ///
    indicate("province=*.province")

  • #2
    For
    Code:
    drop(*.*)
    perhaps you mean
    Code:
    drop(*:*)
    and similarly in the indicate() option.

    Comment

    Working...
    X