michaelstepner / binscatter

Stata module to generate binned scatterplots —
michaelstepner.com/binscatter
Other
43 stars 14 forks source link

sorting on x_r before fastxtile #9

Open laszlosandor opened 10 years ago

laszlosandor commented 10 years ago

There must be reasons why fastxtile is still faster than xtile, but any benefit from not using sorting would not propagate to binscatter (without xq) because of the line

        if !(`touse_first'==1 & word("`:sortedby'",1)=="`x_r'") sort `touse' `x_r'

I am surprised if randvar, randcut or randn make a difference after this, unless they make things worse. Picking the quantiles of a sorted list is trivial.

If this is a path-dependent issue, this might be a cul-de-sac on the path. If there are good reasons for this, of course, never mind.