Announcement

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

  • Lin's Concordance Correlation Coefficient (CCC)

    Hello everyone,
    How can Lin's Concordance Correlation Coefficient (CCC) be computed in Stata?

  • #2
    Often (but not always) a straightforward use of Stata's -search- command, with some of the words of interest, will lead to a helpful answer. Trying that never hurts, and in the current situation, it works well:
    Code:
    search concordance coefficient lin
    brings you to the user-written -concord- command, for which the -help- says "concord computes Lin's (1989, 2000) concordance correlation coefficient for agreement ... ." You may then install and use this command.

    Comment


    • #3
      -search lin concordance- reveals the -concord- command as part of Stata Journal 10(4):691 by Steichen & Cox. To install, -net sj 10-4 st0015_6-.

      Edit: Crossed with #2

      Comment


      • #4
        Successfully installed.

        Code:
        . net install st0015_6
        checking st0015_6 consistency and verifying not already installed...
        installing into C:\Users\ssimwinga\ado\plus\...
        installation complete.
        Tried to command, got that error.

        Code:
        . concord CMM_1 Paper1 , summary ccc
        / is not a valid command name
        r(199);

        Comment


        • #5
          I think you've made a typo by inserting a backslash (/).

          Comment

          Working...
          X