Announcement

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

  • PR option not allowed

    Hello, I am very green with stata still so apologies in advance for my lack of knowledge. I checked post https://www.statalist.org/forums/for...fter-xtoprobit and seem to be experiencing the same problem. However, I am unable to update my stata version (currently using 14.0) as I am working in a shared network provided by my university.

    Do you have any solution for this?

    My code so far is:


    xtset id_number date
    xtologit BUPn SovereignRating SDN_1 SDN_2 SDN_3 SUP_1 SUP_2 SUP_3 SNWQ SPWQ

    Anyway I can reach the probabilities without using the pr option?

    Thanks in advance!
    Last edited by Silvia Coelho; 06 Sep 2019, 11:06.

  • #2
    I think you want - help xtologit postestimation -.

    For example:
    Code:
    webuse tvsfpors,clear
    xtset school
    xtologit thk prethk cc##tv
    predict prob0_*, pu0
    predict prob*, pr

    Comment

    Working...
    X