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
* Large rewrite
* Add mockup test and fix typo
* up tests to check on lts and 1
* Proofread docs
* Move methods to own folder
* prettyfy the notations
* Adding two methods to see if things fails.
* error one too much sqrt in the variance
* export stuff
* typo
* add square to the variance
* Add a new dataset and document datasets
* up
* Bump version to 0.1.2
* typo
* typos
* typo
* up disclaimer message
* Update the reference to the paper
title={Cancer burden in Slovenia in comparison with the burden in other European countries},
126
+
author={Zadnik, Vesna and {\v{Z}}akelj, Maja Primic and Krajc, Mateja},
127
+
journal={Slovenian Medical Journal},
128
+
volume={81},
129
+
number={5},
130
+
year={2012}
131
+
}
132
+
133
+
@article{Zadnik2016,
134
+
title={Cancer patients’ survival: standard calculation methods and some considerations regarding their interpretation},
135
+
author={Zadnik, Vesna and {\v{Z}}agar, Tina and {\v{Z}}akelj, Maja Primic},
136
+
journal={Slovenian Journal of Public Health},
137
+
volume={55},
138
+
number={2},
139
+
pages={144--151},
140
+
year={2016}
141
+
}
142
+
143
+
@article{Giorgi2003,
144
+
title={A relative survival regression model using B-spline functions to model non-proportional hazards},
145
+
author={Giorgi, Roch and Abrahamowicz, Michal and Quantin, Catherine and Bolard, Philippe and Esteve, Jacques and Gouvernet, Joanny and Faivre, Jean},
146
+
journal={Statistics in medicine},
147
+
volume={22},
148
+
number={17},
149
+
pages={2767--2784},
150
+
year={2003},
151
+
publisher={Wiley Online Library}
152
+
}
153
+
154
+
@article{Wolski2020,
155
+
title = {A Permutation Test Based on the Restricted Mean Survival Time for Comparison of Net Survival Distributions in Non-Proportional Excess Hazard Settings},
156
+
author = {Wolski, Anna and Graff{\'e}o, Nathalie and Giorgi, Roch and {the CENSUR working survival group}},
157
+
year = {2020},
158
+
month = jun,
159
+
journal = {Statistical Methods in Medical Research},
160
+
volume = {29},
161
+
number = {6},
162
+
pages = {1612--1623},
163
+
doi = {10.1177/0962280219870217},
164
+
}
165
+
166
+
@article{Laverny2025,
167
+
title={Non-parametric estimation of net survival under dependence between death causes},
168
+
author={Oskar Laverny and Nathalie Grafféo and Roch Giorgi},
Copy file name to clipboardExpand all lines: docs/src/getting_started.md
+35-1Lines changed: 35 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ With these definitions and assumptions in mind, we will now present the four dif
54
54
55
55
where, in the variances, it is understood that when no more individuals are at risk $0/0$ gives $0$.
56
56
57
-
The Pohar Perme estimator [PoharPerme2012](@cite) is the newest addition to relative survival analysis between the four methods, particularly designed to handle situations where covariates may change over time. It is trusted from the field (see e.g. [PermePavlik2018](@cite) and [CharvatBelot2021](@cite)) that only this estimator should really be used, the other ones being included mostly for historical reasons and comparisons.
57
+
The Pohar Perme estimator [PoharPerme2012](@cite) is the newest addition to relative survival analysis between the four methods, particularly designed to handle situations where covariates may change over time. It is trusted from the field (see e.g. [Pavlik2018](@cite) and [CharvatBelot2021](@cite)) that only this estimator should really be used, the other ones being included mostly for historical reasons and comparisons.
58
58
59
59
60
60
```@docs
@@ -131,6 +131,40 @@ While the estimated lifepsan is directly taken from the `expectation` function.
131
131
nessie
132
132
```
133
133
134
+
## Relaxing the independence assumption
135
+
136
+
The independence assumption of the random vector $(E,P)$ can be relaxed by specifying a dependence structure for this random vector, defined by a copula from [Copulas.jl](https://github.com/lrnv/Copulas.jl). The description of the underlying method to compute the net survival, its variance and associated log-rank tests under these dependence assumptions are given in [Laverny2025](@cite).
137
+
138
+
The generalization of the Pohar Perme estimator with a given copula `C::Copulas.Copula` can be used as follows:
By default, `GraffeoTest(C::Copula)` uses `GenPoharPerme(C)` as a method to compute net survival in each category, but this modification also allows to use other methods, such as:
Even if these results are not supported by any theoretical work and are probably meaningless, it is fun to to see that the code goes through, thanks to the modularity of Julia's dispatch, even on routes that were not designed for.
153
+
154
+
```@docs
155
+
GenPoharPerme
156
+
```
157
+
158
+
159
+
## Available Datasets
160
+
161
+
Two classroom datasets are provided in the package:
Copy file name to clipboardExpand all lines: src/GraffeoTest.jl
+77-50Lines changed: 77 additions & 50 deletions
Original file line number
Diff line number
Diff line change
@@ -49,17 +49,19 @@ The produced test statistics is supposed to follow a chi squared distribution un
49
49
References:
50
50
* [Graffeo2016](@cite) Grafféo, Nathalie and Castell, Fabienne and Belot, Aurélien and Giorgi, Roch (2016). A Log-Rank-Type Test to Compare Net Survival Distributions.
0 commit comments