Announcement

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

  • Creating principal components output after pca

    Hi All,

    I wish to create a table depicting the complete output tables post PCA estimation. I found a very helpful link here: https://www.statalist.org/forums/for...ith-pca-output

    In William Lisowski 's code, I am unable to replicate the line

    Code:
    matrix p = table[1...,1] / e(trace)]
    ,

    as table is an unknown function.

    I would greatly appreciate any input on this!

    Best,
    CS
    Last edited by Chinmay Sharma; 19 Jan 2020, 16:24.

  • #2
    I think that line has an error. I think it should be:
    Code:
    matrix p = ev[1...,1] / e(trace)

    Comment


    • #3
      Clyde Schechter is correct and I have added a correction to the original topic linked to in post #1. Many thanks to both of you.

      Comment


      • #4
        Thanks a lot Clyde Schechter !!!

        Comment

        Working...
        X