Announcement

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

  • analyses of adherence

    Dear all,

    Currently I am working on medication database and trying to calculate of proportion of days covered (PDC; used in analyses of adherence).
    I have never used STATA before so I am facing problem in every step of my analysis. Data looks as below:

    input byte(id aspirin clopidogrel heparin lipid_lowering fibrate) str6(supply_date precsription_date)
    1 1 0 0 0 0 "Apr-02" "Jan-02"
    1 1 0 0 0 0 "Apr-02" "Jan-02"
    1 1 0 1 0 0 "Apr-02" "Jan-02"
    1 1 0 0 0 0 "Apr-02" "Jan-02"
    2 1 1 0 0 0 "Feb-03" "Dec-02"
    2 0 1 0 0 0 "Feb-03" "Dec-02"
    2 0 1 0 1 0 "Mar-03" "Jan-03"
    3 0 0 0 0 1 "Jan-10" "Nov-09"
    3 1 0 0 0 0 "Jan-10" "Nov-09"
    3 1 1 0 0 0 "Nov-10" "Sep-10"
    3 1 1 0 0 0 "Nov-10" "Sep-10"
    3 0 0 0 1 0 "Feb-10" "Feb-10"
    4 0 0 0 0 1 "Jun-09" "Apr-09"
    4 0 0 0 0 1 "Jun-09" "May-09"
    5 0 1 0 0 0 "May-03" "May-03"
    5 0 1 0 0 1 "May-03" "May-03"
    5 0 1 0 1 0 "Aug-04" "Jun-10"
    end

    I am also sharing an article describing the calculation of proportion of days covered (PDC) that might be useful (but codes are in SAS).

    http://www.ncpanet.org/pdf/adherence_list.pdf

    According to this article following 4 steps are needed:
    Step 1: Determine the patient’s measurement period, defined as the index prescription date to the end of the calendar year, disenrollment, or death.

    Step 2 Within the measurement period, count the days the patient was covered by at least one drug in the class based on the prescription fill date and days of supply. If prescriptions for the same drug (GCN) overlap, then adjust the prescription start date to be the day after the previous fill has ended.

    Step 3 Divide the number of covered days found in Step 2 by the number of days found in Step 1. Multiply this number by 100 to obtain the PDC (as a percentage) for each patient.

    Step 4 Count the number of patients who had a PDC greater than 80% and then divide by the total number of eligible patients.



    Any help will be greatly appreciated.
    Thank you so much.

    Kind regards,
    Oyun

  • #2
    You'll increase your chances of a helpful answer by following the FAQ on asking questions - provide Stata code in code delimiters, readable Stata output, and sample data using dataex. It is also better if you don't have a pile of questions all at once.

    You need to make sure Stata understands that you have dates. So first, move from strings to dates - see User Guide and other documentation on this. You can use egen with by and max to identify the last date for an id or you just do by id and the last observation will be observation _N.

    Comment


    • #3
      Originally posted by Buyadaa Oyunchimeg View Post
      Dear all,

      Currently I am working on medication database and trying to calculate of proportion of days covered (PDC; used in analyses of adherence).
      I have never used STATA before so I am facing problem in every step of my analysis. Data looks as below:

      input byte(id aspirin clopidogrel heparin lipid_lowering fibrate) str6(supply_date precsription_date)
      1 1 0 0 0 0 "Apr-02" "Jan-02"
      1 1 0 0 0 0 "Apr-02" "Jan-02"
      1 1 0 1 0 0 "Apr-02" "Jan-02"
      1 1 0 0 0 0 "Apr-02" "Jan-02"
      2 1 1 0 0 0 "Feb-03" "Dec-02"
      2 0 1 0 0 0 "Feb-03" "Dec-02"
      2 0 1 0 1 0 "Mar-03" "Jan-03"
      3 0 0 0 0 1 "Jan-10" "Nov-09"
      3 1 0 0 0 0 "Jan-10" "Nov-09"
      3 1 1 0 0 0 "Nov-10" "Sep-10"
      3 1 1 0 0 0 "Nov-10" "Sep-10"
      3 0 0 0 1 0 "Feb-10" "Feb-10"
      4 0 0 0 0 1 "Jun-09" "Apr-09"
      4 0 0 0 0 1 "Jun-09" "May-09"
      5 0 1 0 0 0 "May-03" "May-03"
      5 0 1 0 0 1 "May-03" "May-03"
      5 0 1 0 1 0 "Aug-04" "Jun-10"
      end

      I am also sharing an article describing the calculation of proportion of days covered (PDC) that might be useful (but codes are in SAS).

      http://www.ncpanet.org/pdf/adherence_list.pdf

      According to this article following 4 steps are needed:
      Step 1: Determine the patient’s measurement period, defined as the index prescription date to the end of the calendar year, disenrollment, or death.

      Step 2 Within the measurement period, count the days the patient was covered by at least one drug in the class based on the prescription fill date and days of supply. If prescriptions for the same drug (GCN) overlap, then adjust the prescription start date to be the day after the previous fill has ended.

      Step 3 Divide the number of covered days found in Step 2 by the number of days found in Step 1. Multiply this number by 100 to obtain the PDC (as a percentage) for each patient.

      Step 4 Count the number of patients who had a PDC greater than 80% and then divide by the total number of eligible patients.



      Any help will be greatly appreciated.
      Thank you so much.

      Kind regards,
      Oyun

      Hello Oyun,
      I am also doing a similar kind of analysis and facing problems in Stata to calculate and ultimately adherence. Although in Stata there is a PDC and medadherence package available, I need to do from scratch manually. So, if you could do it please send me the code by step by step.

      It It will be greatly appreciated.
      Thank you so much.

      Sincerely yours,
      Kafi


      Comment

      Working...
      X