A hospital administrator wished to develop a regression model for predicting the degree of long-term recovery after discharge from hospital for severely injured patients. The predictor variable to be utilized is number of days of hospitalization and the dependent variable is a prognosis index for long-term recovery (with large values of the index reflecting a good prognosis). Data for 15 patients
#include <iostream>
struct Patient
{
int hospitalizetion_days;
float index_recovery;
};
int main()
{
Patient p[15];
return 0;
}
Comments
Leave a comment