You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2020. It is now read-only.
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?