Cameron Davidson-Pilon
Cameron Davidson-Pilon
Strange, I don't see that happen. I don't think it's a lifelines problem though. What version of matplotlib are you using?
@JediMed, I haven't been able to reproduce this error to fix. Can you post a small, example that produces the problem?
Oh, try .plot first, before the set_xlabel.
I think I can add this as a condition in the code too
Hi @konradsemsch - hm, I don't know what's going on here. I'm guess the difference between the Ubuntu and Mac is if numexpr is installed (lots of libs, like pandas,...
Are you able to share the two `print_summary` results here?
Hi @dbikiel - seems like a simple idea. To confirm: are you currently using [`lifelines.utils.concordance.concordance_index`](https://github.com/CamDavidsonPilon/lifelines/blob/master/lifelines/utils/concordance.py#L36)?
coolio - I'm going to save this for 0.22.1 release :) EDIT: yea, I shouldn't be so optimistic on timelines 🙃
Not atm, but it's come up before. To help, can you explain what analysis you'd like to accomplish with this?
hi @ivanzhovannik, like you want to average _after_ fitting, or during? If after, does ``` 0.5 * (cph1.params_ + cph2.params_) ``` give you what you want? ---- Ah, but you...