Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 993563
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T06:26:36+00:00 2026-05-16T06:26:36+00:00

I know there is COXPHFIT function in MATLAB to do Cox regression, but I

  • 0

I know there is COXPHFIT function in MATLAB to do Cox regression, but I have problems understanding how to apply it.

1) How to compare two groups of samples with survival data in days (survdays), censoring (cens) and some predictor value (x)? The groups defined by groups logical variable. Groups have different number of samples.

2) What is the baseline parameter in coxphfit? I did read the docs, but how should I choose the baseline properly?

It would be great if you know a site with good detailed examples on medical survival data. I found only the Mathworks demo that does not even mention coxphfit.

Do you know may be another 3rd party function for Cox regression?

UPDATE: The r tag added since the answer I’ve got is for R.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T06:26:37+00:00Added an answer on May 16, 2026 at 6:26 am

    With survival analysis, the hazard function is the instantaneous death rate.

    In these analyses, you are typically measuring what effect something has on this hazard function. For example, you may ask “does swallowing arsenic increase the rate at which people die?”. A background hazard is the level at which people would die anyway (without swallowing arsenic, in this case).

    If you read the docs for coxphfit carefully, you will notice that that function tries to calculate the baseline hazard; it is not something that you enter.

    baseline The X values at which to
    compute the baseline hazard.

    EDIT: MATLAB’s coxphfit function doesn’t obviously work with grouped data. If you are happy to switch to R, then the anaylsis is a one-liner.

    library(survival)
    
    #Create some data
    n <- 20; 
    dfr <- data.frame(
      survdays = runif(n, 5, 15),
      cens     = runif(n) < .3,
      x        = rlnorm(n),
      groups   = rep(c("first", "second"), each = n / 2)
    )
    
    #The Cox ph analysis
    summary(coxph(Surv(survdays, cens) ~ x / groups, dfr))
    

    ANOTHER EDIT: That baseline parameter to MATLAB’s coxphfit appears to be a normalising constant. R’s coxph function doesn’t have an equivalent parameter. I looked in Statistical Computing by Michael Crawley and it seems to suggest that the baseline hazard isn’t important, since it cancels out when you calculate the likelihood of your individual dying. See Chapter 33, and p615-616 in particular. My knowledge of how the model works isn’t deep enough to explain the discrepancy in the MATLAB and R implementations; perhaps you could ask on the Stack Exchange Stats Analysis site.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.