This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Description
Hi,
I am trying to implement survival analysis with VB.net. I kind of follow the given example in C# and use
Dim cox As New Accord.Statistics.Analysis.ProportionalHazardsAnalysis(DataCox_Variable, DataCox_Time, DataCox_Event)
cox.Compute()
But cox.compute() is not accepted, and its seems it expect a regression model (Accord.Statistics.Models.Regression.ProportionalHazard). It's not in the example in C# I try to follow, and I am wondering what I do wrong. Can someone help?