Research talk:Reading time
Work log
[ refresh list ]
- Reading time/Work log/2019-01-02
- Reading time/Work log/2018-11-21
- Reading time/Work log/2018-11-20
- Reading time/Work log/2018-11-18
- Reading time/Work log/2018-11-17
- Reading time/Work log/2018-11-15
- Reading time/Work log/2018-11-13
- Reading time/Work log/2018-11-09
- Reading time/Work log/2018-11-06
- Reading time/Work log/2018-11-02
- Reading time/Work log/2018-11-01
- Reading time/Work log/2018-10-28
- Reading time/Work log/2018-10-26
- Reading time/Work log/2018-10-24
- Reading time/Work log/2018-10-23
- Reading time/Work log/2018-10-22
- Reading time/Work log/2018-10-20
- Reading time/Work log/2018-10-18
- Reading time/Work log/2018-10-16
- Reading time/Work log/2018-10-14
- Reading time/Work log/2018-10-09
- Reading time/Work log/2018-10-07
- Reading time/Work log/2018-10-06
- Reading time/Work log/2018-10-04
- Reading time/Work log/2018-10-02
- Reading time/Work log/2018-09-27
- Reading time/Work log/2018-09-26
- Reading time/Work log/2018-09-25
Lab Notebook
editInterpreting Exponentiated Weibull Models
editNow I'm going to work on interpreting Exponentiated Weibull models and I'm going to tabulate the frequency of qualitatively different distributions by wiki.
The Exponentiated Weibull has 3 parameters. Two are shape parameters ( and ) and one is a scale parameter ( ). The major qualitative distinctions in interpreting the model are in terms of the shape parameters.
According to this analysis of the Exponentiated Weibull:
- If and then we have an exponential distribution with parameter .
- If we have a Weibull distribution.
- In this case the failure rate is always increasing (positive ageing) if and always decreasing (negative ageing) if .
- If then we have a exponentiated exponential distribution and the failure rate may not be monotonic.
- In this case, and if then the failure rate increases when .
- On the other hand if then the failure rate decreases when .
- If and then we have positive ageing (the failure rate is increasing).
- If and then we have negative ageing (the failure rate is decreasing).
- If the two shape parameters have opposite signs then interpreting the model may require closer inspection of hazard and/or survival curves.
Inconveniently, it looks like almost all of the time we have and .
expweib_tab = table[table.model =='exponweib'].copy().reset_index()
expweib_tab['a'] = expweib_tab.params.apply(lambda r: r[0])
expweib_tab['c'] = expweib_tab.params.apply(lambda r: r[1])
expweib_tab['scale'] = expweib_tab.params.apply(lambda r: r[3])
expweib_tab['a_ge_1'] = expweib_tab.a >= 1
expweib_tab['c_ge_1'] = expweib_tab.c >= 1
expweib_tab = expweib_tab.drop(['level_0','index'],1)
pd.crosstab(expweib_tab['a_ge_1'],expweib_tab['c_ge_1'])
Note that in the code a = and c = .
False | True | |
---|---|---|
False | 0 | 1 |
True | 241 | 0 |
So, inconveniently, I don't know what we can say qualitatively about reading times just from looking at the parameter estimates.
Next I'm going to plot hazard functions for a handful of wikis to see if there is anything we can say in general about these parameters from the distributions.