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
Should allow to customized label names when plotting ECDF:
# Import load_circuit_breaker function from relife.datasetfromrelifeimport*fromrelife.datasetsimportload_circuit_breaker# Assign time, event variables from datasettime, event=load_circuit_breaker().astuple()[:-1]
# Get only time values for observed eventtime1=time[event==1]
# Fit ECDF estimator to time1ecdf=ECDF().fit(time1)
# Plot ECDF estimator of F and 1-Fecdf.plot(label='custom_label')
Should allow to customized label names when plotting ECDF:
returns error:
TypeError: plot() got multiple values for keyword argument 'label'
The text was updated successfully, but these errors were encountered: