I would like to step through, using debug() or trace(), a function that was not exported. For example, how can I do it for vcov.polr o
debug()
trace()
vcov.polr
try
debug(MASS:::vcov.polr)
note that three colon ::: make the hidden object in a package visible.
:::