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
When i did pip install transitionMatrix all modules couldn't be installed. Anyway, i installed from github but there is an another issue here:
TypeError Traceback (most recent call last)
<ipython-input-13-bb59c58d3d9a> in <module>
20 myEstimator = es.CohortEstimator(states=myState, ci={'method': 'goodman', 'alpha': 0.05})
21 # myMatrix = matrix.CohortEstimator(states=myState)
---> 22 result = myEstimator.fit(sorted_data)
23 #myEstimator.summary()
~\Downloads\transitionMatrix-master\transitionMatrix-master\transitionMatrix\estimators\cohort_estimator.py in fit(self, data, labels)
92 # The number of cohorts is the number of intervals
93 # Minimally two (initial and final)
---> 94 cohort_dim = len(self.cohort_bounds) - 1
95 event_count = data[id_label].count()
96
TypeError: object of type 'NoneType' has no len()
Thanks.
The text was updated successfully, but these errors were encountered:
Thanks for reporting these issues. The current PyPI release is a bit dated. The immediate next milestone is to further test the current version and have a 0.5 release
It seems that CohortEstimator(states=myState, ci={'method': 'goodman', 'alpha': 0.05})
when initialized: def __init__(self, cohort_bounds=None, states=None, ci=None)
So it expects cohort_bounds. When not passed in the default is None.
I've tried modifying the fit() function to work with the old method:
# Old way of enumerating cohort intervals was using labels
cohort_labels = data[timestep_label].unique()
cohort_dim = len(cohort_labels) - 1
But it causes further issues with: tmn_count[(entity_state[i], entity_state[i + 1], event_time[i])] += 1
State Space
--------------------------------------------------------------------------------
State Index and Label: 0 , 0
State Index and Label: 1 , 1
State Index and Label: 2 , 2
State Index and Label: 3 , 3
State Index and Label: 4 , 4
State Index and Label: 5 , 5
State Index and Label: 6 , 6
State Index and Label: 7 , 8
Hi, thanks for this amazing package.
When i did
pip install transitionMatrix
all modules couldn't be installed. Anyway, i installed from github but there is an another issue here:Thanks.
The text was updated successfully, but these errors were encountered: