How to calculate expected risk from fitted Cox PH model in R?











up vote
2
down vote

favorite












I'd like to calculate the expected risk (cumulative incidences), which are derived from a fitted Cox PH model using R packages.



I have the fitted Cox PH model like as follows:



##[Variables]##
# **Dataset: 10,000 cases(patients) with 6 variabels

# t: time to event, s: event (coded as 0 or 1)
# covariates: X1, X2, X3, X4 (coded as 0 or 1)

fit <- coxph(Surv (t,s) ~ X1 + X2 + X3 + X4, data = data)

summary (fit)

# coef exp(coef) se (coef) z P
# X1 -0.3777 0.6855 0.1120 -3.37 0.00075
# X2 0.4014 1.4938 0.0518 7.74 <0.0001
# X3 0.7417 2.0995 0.0893 8.31 <0.0001
# X4 0.4330 1.5419 0.1268 3.42 <0.001


From this model, I'd like to calculate the expected risk (cumulative incidence of events) for each case according to X1 = 0 or X1 = 1.



In other words, if the X1 of all 10,000 cases were 0, how could I calculate the expected risk for each case? At the same time, if the X1 of all 10,000 cases were 1, how could I calculate the expected risk for each case? (using R)



After calculating the expected risk for each patient, then I'd like to calculate the risk-benefit ratio for each patient according to variable X1 [by (Expected risk, when X1 = 0) - (Expected risk, when X1 = 1)], does it right?



Meanwhile, I have tried to plot the expected cumulative risk curve according to X1 like as follows; was it appropriate?



baseha = basehaz(fit, centered=FALSE)

# X1=0: exp (-0.38*0) = 1, X1=1: exp (-0.38*1) = 0.68

plot(baseha$$time[,2], baseha$hazard*(1), type="s", lty=1)
lines(baseha$$time[,2], baseha$hazard*(0.68), type="s", lty=2)


Thanks for your kind answers.










share|improve this question




























    up vote
    2
    down vote

    favorite












    I'd like to calculate the expected risk (cumulative incidences), which are derived from a fitted Cox PH model using R packages.



    I have the fitted Cox PH model like as follows:



    ##[Variables]##
    # **Dataset: 10,000 cases(patients) with 6 variabels

    # t: time to event, s: event (coded as 0 or 1)
    # covariates: X1, X2, X3, X4 (coded as 0 or 1)

    fit <- coxph(Surv (t,s) ~ X1 + X2 + X3 + X4, data = data)

    summary (fit)

    # coef exp(coef) se (coef) z P
    # X1 -0.3777 0.6855 0.1120 -3.37 0.00075
    # X2 0.4014 1.4938 0.0518 7.74 <0.0001
    # X3 0.7417 2.0995 0.0893 8.31 <0.0001
    # X4 0.4330 1.5419 0.1268 3.42 <0.001


    From this model, I'd like to calculate the expected risk (cumulative incidence of events) for each case according to X1 = 0 or X1 = 1.



    In other words, if the X1 of all 10,000 cases were 0, how could I calculate the expected risk for each case? At the same time, if the X1 of all 10,000 cases were 1, how could I calculate the expected risk for each case? (using R)



    After calculating the expected risk for each patient, then I'd like to calculate the risk-benefit ratio for each patient according to variable X1 [by (Expected risk, when X1 = 0) - (Expected risk, when X1 = 1)], does it right?



    Meanwhile, I have tried to plot the expected cumulative risk curve according to X1 like as follows; was it appropriate?



    baseha = basehaz(fit, centered=FALSE)

    # X1=0: exp (-0.38*0) = 1, X1=1: exp (-0.38*1) = 0.68

    plot(baseha$$time[,2], baseha$hazard*(1), type="s", lty=1)
    lines(baseha$$time[,2], baseha$hazard*(0.68), type="s", lty=2)


    Thanks for your kind answers.










    share|improve this question


























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      I'd like to calculate the expected risk (cumulative incidences), which are derived from a fitted Cox PH model using R packages.



      I have the fitted Cox PH model like as follows:



      ##[Variables]##
      # **Dataset: 10,000 cases(patients) with 6 variabels

      # t: time to event, s: event (coded as 0 or 1)
      # covariates: X1, X2, X3, X4 (coded as 0 or 1)

      fit <- coxph(Surv (t,s) ~ X1 + X2 + X3 + X4, data = data)

      summary (fit)

      # coef exp(coef) se (coef) z P
      # X1 -0.3777 0.6855 0.1120 -3.37 0.00075
      # X2 0.4014 1.4938 0.0518 7.74 <0.0001
      # X3 0.7417 2.0995 0.0893 8.31 <0.0001
      # X4 0.4330 1.5419 0.1268 3.42 <0.001


      From this model, I'd like to calculate the expected risk (cumulative incidence of events) for each case according to X1 = 0 or X1 = 1.



      In other words, if the X1 of all 10,000 cases were 0, how could I calculate the expected risk for each case? At the same time, if the X1 of all 10,000 cases were 1, how could I calculate the expected risk for each case? (using R)



      After calculating the expected risk for each patient, then I'd like to calculate the risk-benefit ratio for each patient according to variable X1 [by (Expected risk, when X1 = 0) - (Expected risk, when X1 = 1)], does it right?



      Meanwhile, I have tried to plot the expected cumulative risk curve according to X1 like as follows; was it appropriate?



      baseha = basehaz(fit, centered=FALSE)

      # X1=0: exp (-0.38*0) = 1, X1=1: exp (-0.38*1) = 0.68

      plot(baseha$$time[,2], baseha$hazard*(1), type="s", lty=1)
      lines(baseha$$time[,2], baseha$hazard*(0.68), type="s", lty=2)


      Thanks for your kind answers.










      share|improve this question















      I'd like to calculate the expected risk (cumulative incidences), which are derived from a fitted Cox PH model using R packages.



      I have the fitted Cox PH model like as follows:



      ##[Variables]##
      # **Dataset: 10,000 cases(patients) with 6 variabels

      # t: time to event, s: event (coded as 0 or 1)
      # covariates: X1, X2, X3, X4 (coded as 0 or 1)

      fit <- coxph(Surv (t,s) ~ X1 + X2 + X3 + X4, data = data)

      summary (fit)

      # coef exp(coef) se (coef) z P
      # X1 -0.3777 0.6855 0.1120 -3.37 0.00075
      # X2 0.4014 1.4938 0.0518 7.74 <0.0001
      # X3 0.7417 2.0995 0.0893 8.31 <0.0001
      # X4 0.4330 1.5419 0.1268 3.42 <0.001


      From this model, I'd like to calculate the expected risk (cumulative incidence of events) for each case according to X1 = 0 or X1 = 1.



      In other words, if the X1 of all 10,000 cases were 0, how could I calculate the expected risk for each case? At the same time, if the X1 of all 10,000 cases were 1, how could I calculate the expected risk for each case? (using R)



      After calculating the expected risk for each patient, then I'd like to calculate the risk-benefit ratio for each patient according to variable X1 [by (Expected risk, when X1 = 0) - (Expected risk, when X1 = 1)], does it right?



      Meanwhile, I have tried to plot the expected cumulative risk curve according to X1 like as follows; was it appropriate?



      baseha = basehaz(fit, centered=FALSE)

      # X1=0: exp (-0.38*0) = 1, X1=1: exp (-0.38*1) = 0.68

      plot(baseha$$time[,2], baseha$hazard*(1), type="s", lty=1)
      lines(baseha$$time[,2], baseha$hazard*(0.68), type="s", lty=2)


      Thanks for your kind answers.







      r survival-analysis cox-regression






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 9 at 7:41









      kath

      3,780724




      3,780724










      asked Nov 9 at 6:18









      James Lee

      111




      111





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53220750%2fhow-to-calculate-expected-risk-from-fitted-cox-ph-model-in-r%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53220750%2fhow-to-calculate-expected-risk-from-fitted-cox-ph-model-in-r%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud

          Zucchini