Closed holvi-german closed 5 years ago
Hey! Awesome library - saved my day!
I've experienced an issue when trying to fit a model:
single.KaplanMeier.fit(B,T)
throws TypeError: fit() missing 1 required positional argument: 'T'.
TypeError: fit() missing 1 required positional argument: 'T'
Can not figure out what's the issue here.
You need to instantiate the model first!
model = single.KaplanMeier() model.fit(B, T)
hope that makes sense!
Hey! Awesome library - saved my day!
I've experienced an issue when trying to fit a model:
throws
TypeError: fit() missing 1 required positional argument: 'T'
.Can not figure out what's the issue here.