I'm trying to develop a predictive model using cancer survival data and used the R package survivalsvm which uses SVM method. After running the following code i got some results but finding it difficult to interpret it. I know that in Cox regression it predicts the Cumulative Hazard Function, but is it the same in survivalsvm? I ran both Cox and survivalsvm models and the results are quite different:
smodel_svm = survivalsvm(Surv(time, outcome) ~ radius.mean + tumor.size, data=training_set, gamma.mu = 1)
pred_test_svm = predict(smodel_svm, test_set)
summary(pred_test_svm)
predict.coxphfunction which I would assume is what is meant by "Cox regression predicts" returns the "linear predictor", i.e., log-relative hazard associated with differences from the mean of covariates. See it's help page for further details and options and edit the body of your question to add a minimal reproducible example, include a library cal for any need ed packages, and clarify what is being asked. - IRTFM