Skip to content

Commit 787d8aa

Browse files
authored
Merge pull request #49 from nanxstats/main
Add citation section to readme
2 parents 2f84e17 + e8ba80f commit 787d8aa

File tree

2 files changed

+80
-85
lines changed

2 files changed

+80
-85
lines changed

README.md

+30-34
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ coverage](https://codecov.io/gh/Merck/psm3mkv/branch/main/graph/badge.svg)](http
1111

1212
The goal of psm3mkv is to evaluate the efficiency and fit of certain
1313
three state model structures to data typical from an oncology clinical
14-
trial, as described in an accompanying article [1]. The package
14+
trial, as described in an accompanying article (Muston 2024). The package
1515
evaluates the following structures:
1616

1717
- Partitioned Survival Model/analysis (PSM),
@@ -22,7 +22,8 @@ evaluates the following structures:
2222

2323
The state transition models differ from each other in that the
2424
transition from progressive disease to death is a function of time from
25-
baseline in the STM-CF and time from progression in the STM-CR [2, 3].
25+
baseline in the STM-CF and time from progression in the STM-CR
26+
(Jackson 2016; Woods et al. 2020).
2627

2728
The package requires a patient-level dataset of time to progression
2829
(TTP), progression-free survival (PFS) and overall survival (OS).
@@ -34,7 +35,7 @@ Given this, the package enables:
3435
- One piece parametric (distributions according to flexsurv).
3536

3637
- Royston-Parmar splines (1-3 internal knots, hazard/odds/normal
37-
scales, again as per flexsurv) [4].
38+
scales, again as per flexsurv) (Royston and Parmar 2002).
3839

3940
- Two piece parametric (given a time cutoff).
4041

@@ -114,49 +115,44 @@ package [documentation website](https://merck.github.io/psm3mkv/).
114115
### Additional dependencies
115116

116117
Running the vignettes requires additional dependencies, which are all
117-
either imported by or suggested by *psm3mkv*. Thus you can ensure they
118+
either imported by or suggested by psm3mkv. Thus you can ensure they
118119
are all installed by specifying `dependencies = TRUE`.
119120

120121
``` r
121122
pak::pak("Merck/psm3mkv@*release", dependencies = TRUE)
122123
```
123124

124-
## Licensing
125+
## Citation
125126

126-
Copyright (c) 2024 Merck & Co., Inc., Rahway, NJ, USA and its
127-
affiliates. All rights reserved.
127+
If you use this software, please cite it as below.
128128

129-
This file is part of the psm3mkv program.
129+
> Muston, D. 2024. "Informing Structural Assumptions for Three State Oncology
130+
> Cost-Effectiveness Models through Model Efficiency and Fit."
131+
> _Applied Health Economics and Health Policy_. DOI: 10.1007/s40258-024-00884-2
130132
131-
psm3mkv is free software: you can redistribute it and/or modify it under
132-
the terms of the GNU General Public License as published by the Free
133-
Software Foundation, either version 3 of the License, or (at your
134-
option) any later version.
133+
A BibTeX entry for LaTeX users is
135134

136-
This program is distributed in the hope that it will be useful, but
137-
WITHOUT ANY WARRANTY; without even the implied warranty of
138-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
139-
Public License for more details.
140-
141-
You should have received a copy of the GNU General Public License along
142-
with this program. If not, see <http://www.gnu.org/licenses/>.
143-
144-
psm3mkv uses third-party R packages which may be distributed under
145-
different licenses.
135+
```bibtex
136+
@article{muston2024informing,
137+
author = {Dominic Muston},
138+
title = {Informing structural assumptions for three state oncology cost-effectiveness models through model efficiency and fit},
139+
journal = {Applied Health Economics and Health Policy},
140+
year = {2024},
141+
doi = {10.1007/s40258-024-00884-2}
142+
}
143+
```
146144

147145
## References
148146

149-
1. Muston, D. 2024. "Informing Structural Assumptions for Three State Oncology Cost-Effectiveness Models through Model Efficiency and Fit." _Appl Health Econ Health Policy_. DOI: 10.1007/s40258-024-00884-2
150-
151-
2. Jackson, Christopher. 2016. "flexsurv: A Platform for Parametric
152-
Survival Modeling in R." _Journal of Statistical Software_ 70 (8): 1--33.
147+
Jackson, Christopher. 2016. "flexsurv: A Platform for Parametric
148+
Survival Modeling in R." _Journal of Statistical Software_ 70 (8): 1--33.
153149

154-
3. Woods, Beth S, Eleftherios Sideris, Stephen Palmer, Nick Latimer,
155-
and Marta Soares. 2020. "Partitioned Survival and State Transition Models
156-
for Healthcare Decision Making in Oncology: Where Are We Now?"
157-
_Value in Health_ 23 (12): 1613--1621.
150+
Woods, Beth S, Eleftherios Sideris, Stephen Palmer, Nick Latimer,
151+
and Marta Soares. 2020. "Partitioned Survival and State Transition Models
152+
for Healthcare Decision Making in Oncology: Where Are We Now?"
153+
_Value in Health_ 23 (12): 1613--1621.
158154

159-
4. Royston, Patrick, and Mahesh KB Parmar. 2002. "Flexible Parametric
160-
Proportional-Hazards and Proportional-Odds Models for Censored Survival
161-
Data, with Application to Prognostic Modelling and Estimation of
162-
Treatment Effects." _Statistics in Medicine_ 21 (15): 2175--2197.
155+
Royston, Patrick, and Mahesh KB Parmar. 2002. "Flexible Parametric
156+
Proportional-Hazards and Proportional-Odds Models for Censored Survival
157+
Data, with Application to Prognostic Modelling and Estimation of
158+
Treatment Effects." _Statistics in Medicine_ 21 (15): 2175--2197.

vignettes/psm3mkv.bib

+50-51
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ @misc{hanpu2021predictive
44
year = {2021},
55
month = {July},
66
howpublished = {\url{https://cran.r-project.org/package=SurvMetrics/vignettes/SurvMetrics-vignette.html}},
7-
note = {Vignette to the {SurvMetrics} R package}
7+
note = {Vignette to the {SurvMetrics} {R} package}
88
}
99

1010
@article{jackson2016flexsurv,
@@ -17,12 +17,12 @@ @article{jackson2016flexsurv
1717
pages = {1--33}
1818
}
1919

20-
@unpublished{muston2024informing,
21-
author = {Dominic Muston},
22-
title = {Informing structural assumptions for three state oncology cost-effectiveness models through model efficiency and fit},
20+
@article{muston2024informing,
21+
author = {Dominic Muston},
22+
title = {Informing structural assumptions for three state oncology cost-effectiveness models through model efficiency and fit},
2323
journal = {Applied Health Economics and Health Policy},
24-
note = {In press},
25-
year = {2024}
24+
year = {2024},
25+
doi = {10.1007/s40258-024-00884-2}
2626
}
2727

2828
@article{naimark2013half,
@@ -51,7 +51,7 @@ @techreport{nice2022
5151
@article{royston2002flexible,
5252
title = {Flexible parametric proportional-hazards and proportional-odds models for censored survival data, with application to prognostic modelling and estimation of treatment effects},
5353
author = {Royston, Patrick and Parmar, Mahesh KB},
54-
journal = {Statistics in medicine},
54+
journal = {Statistics in Medicine},
5555
volume = {21},
5656
number = {15},
5757
pages = {2175--2197},
@@ -78,53 +78,52 @@ @article{woods2020partitioned
7878
year = {2020}
7979
}
8080

81-
@Manual{pack_dplyr,
82-
title = {dplyr: A Grammar of Data Manipulation},
83-
author = {Hadley Wickham and Romain François and Lionel Henry and Kirill Müller and Davis Vaughan},
84-
year = {2023},
85-
note = {R package version 1.1.4},
86-
url = {https://CRAN.R-project.org/package=dplyr},
87-
}
81+
@manual{pack_dplyr,
82+
title = {{dplyr}: A Grammar of Data Manipulation},
83+
author = {Hadley Wickham and Romain François and Lionel Henry and Kirill Müller and Davis Vaughan},
84+
year = {2023},
85+
note = {R package version 1.1.4},
86+
url = {https://CRAN.R-project.org/package=dplyr}
87+
}
8888

89-
@TechReport{pack_HMDHFDplus,
90-
author = {Tim Riffe},
91-
title = {Reading Human Fertility Database and Human Mortality Database data into R},
92-
institution = {MPIDR},
93-
year = {2015},
94-
url = {https://dx.doi.org/10.4054/MPIDR-TR-2015-004},
95-
number = {TR-2015-004},
96-
doi = {10.4054/MPIDR-TR-2015-004},
97-
}
89+
@techreport{pack_HMDHFDplus,
90+
author = {Tim Riffe},
91+
title = {Reading Human Fertility Database and Human Mortality Database data into {R}},
92+
institution = {MPIDR},
93+
year = {2015},
94+
url = {https://dx.doi.org/10.4054/MPIDR-TR-2015-004},
95+
number = {TR-2015-004},
96+
doi = {10.4054/MPIDR-TR-2015-004}
97+
}
9898

99-
@Manual{pack_tibble,
100-
title = {tibble: Simple Data Frames},
101-
author = {Kirill Müller and Hadley Wickham},
102-
year = {2023},
103-
note = {R package version 3.2.1},
104-
url = {https://CRAN.R-project.org/package=tibble},
105-
}
99+
@manual{pack_tibble,
100+
title = {{tibble}: Simple Data Frames},
101+
author = {Kirill Müller and Hadley Wickham},
102+
year = {2023},
103+
note = {R package version 3.2.1},
104+
url = {https://CRAN.R-project.org/package=tibble}
105+
}
106106

107-
@Manual{pack_boot,
108-
title = {boot: Bootstrap R (S-Plus) Functions},
109-
author = {{Angelo Canty} and {B. D. Ripley}},
110-
year = {2024},
111-
note = {R package version 1.3-29},
112-
}
107+
@manual{pack_boot,
108+
title = {boot: Bootstrap {R} ({S-Plus}) Functions},
109+
author = {{Angelo Canty} and {B. D. Ripley}},
110+
year = {2024},
111+
note = {{R} package version 1.3-29}
112+
}
113113

114-
@Manual{pack_ggsci,
115-
title = {ggsci: Scientific Journal and Sci-Fi Themed Color Palettes for
116-
'ggplot2'},
117-
author = {Nan Xiao},
118-
year = {2024},
119-
note = {R package version 3.0.3},
120-
url = {https://CRAN.R-project.org/package=ggsci},
121-
}
114+
@manual{pack_ggsci,
115+
title = {{ggsci}: Scientific Journal and Sci-Fi Themed Color Palettes for '{ggplot2}'},
116+
author = {Nan Xiao},
117+
year = {2024},
118+
note = {R package version 3.0.3},
119+
url = {https://CRAN.R-project.org/package=ggsci}
120+
}
122121

123122

124-
@Manual{pack_purrr,
125-
title = {purrr: Functional Programming Tools},
126-
author = {Hadley Wickham and Lionel Henry},
127-
year = {2023},
128-
note = {R package version 1.0.2},
129-
url = {https://CRAN.R-project.org/package=purrr},
130-
}
123+
@manual{pack_purrr,
124+
title = {{purrr}: Functional Programming Tools},
125+
author = {Hadley Wickham and Lionel Henry},
126+
year = {2023},
127+
note = {R package version 1.0.2},
128+
url = {https://CRAN.R-project.org/package=purrr}
129+
}

0 commit comments

Comments
 (0)