Liming Wang

Results 2 issues of Liming Wang

In academic papers, it is common to show estimation outputs from similar models side-by-side to facilitate comparison. `stargazer` supports this: ``` fit1 Model1 Model2 > (1) (2) > ----------------------------------------------------------------- >...

enhancement

I have this simple code defining a class: ``` class test: def __init__(self): x = [0, 0] y = 0 #import pdb; pdb.set_trace() import ptpdb; ptpdb.set_trace() test() ``` When I...