1
1
Package: CLVTools
2
2
Title: Tools for Customer Lifetime Value Estimation
3
- Version: 0.5 .0
4
- Date: 2020-05-05
3
+ Version: 0.6 .0
4
+ Date: 2020-06-22
5
5
Authors@R: c(
6
6
person(given="Patrick", family="Bachmann", email = "
[email protected] ", role = c("cre","aut")),
7
7
person(given="Jeffrey", family="Naef", email = "
[email protected] ",role = "aut"),
@@ -15,9 +15,11 @@ Description: Probabilistic latent customer attrition models (also known as "buy-
15
15
predict future purchase behavior of customers. This package includes fast and accurate implementations of various
16
16
probabilistic latent customer attrition models for non-contractual settings (e.g., retail business) with and
17
17
without time-invariant and time-varying covariates. Currently, the package includes the Pareto/NBD model
18
- (Pareto/Negative-Binomial-Distribution) for the purchase and the attrition processes as well as the Gamma/Gamma model
19
- for the spending process. For reference to the Pareto/NBD model, see Schmittlein DC, Morrison DG, Colombo R (1987) <doi:10.1287/mnsc.33.1.1>.
20
- For reference to the Gamma/Gamma model, see Fader PS, Hardie BG, Lee K (2005) <doi:10.1509/jmkr.2005.42.4.415>.
18
+ (Pareto/Negative-Binomial-Distribution), the BG/NBD mode (Beta-Gamma/Negative-Binomial-Distribution) and the GGom/NBD
19
+ (Gamma-Gompertz/Negative-Binomial-Distribution) for the purchase and the attrition processes as well as the Gamma/Gamma model
20
+ for the spending process. For reference to the Pareto/NBD model, see Schmittlein DC, Morrison DG, Colombo R (1987) <doi:10.1287/mnsc.33.1.1>,
21
+ for the BG/NBD model, see Fader PS, Hardie BG, Lee K (2005) <doi:10.1287/mksc.1040.0098> and for the GGom/NBD model see Bemmaor AC, Glady N (2012)
22
+ <doi:10.1287/mnsc.1110.1461>. For reference to the Gamma/Gamma model, see Fader PS, Hardie BG, Lee K (2005) <doi:10.1509/jmkr.2005.42.4.415>.
21
23
Imports:
22
24
data.table (>= 1.12.0),
23
25
foreach (>= 1.5.0),
@@ -26,14 +28,14 @@ Imports:
26
28
Matrix (>= 1.2-17),
27
29
MASS,
28
30
optimx (>= 2019-12.02),
29
- Rcpp (>= 0.12.12),
30
31
stats,
31
32
utils
32
33
Suggests:
33
34
BTYD,
34
35
covr,
35
36
doFuture,
36
37
doParallel,
38
+ future,
37
39
knitr,
38
40
rmarkdown,
39
41
testthat
@@ -42,7 +44,7 @@ URL: https://github.com/bachmannpatrick/CLVTools
42
44
BugReports: https://github.com/bachmannpatrick/CLVTools/issues
43
45
NeedsCompilation: yes
44
46
SystemRequirements: C++11
45
- LinkingTo: Rcpp, RcppArmadillo (>= 0.9.500.2.0), RcppGSL (>= 0.3.7)
47
+ LinkingTo: Rcpp(>= 0.12.12) , RcppArmadillo (>= 0.9.500.2.0), RcppGSL (>= 0.3.7)
46
48
LazyLoad: yes
47
49
Encoding: UTF-8
48
50
Collate:
@@ -51,12 +53,20 @@ Collate:
51
53
'all_generics.R'
52
54
'class_clv_time.R'
53
55
'class_clv_data.R'
54
- 'class_clv_data_staticcovariates.R'
55
- 'class_clv_data_dynamiccovariates.R'
56
56
'class_clv_model.R'
57
57
'class_clv_fitted.R'
58
+ 'class_clv_model_bgnbd.R'
59
+ 'class_clv_bgnbd.R'
58
60
'class_clv_fitted_staticcov.R'
61
+ 'class_clv_data_staticcovariates.R'
62
+ 'class_clv_model_bgnbd_staticcov.R'
63
+ 'class_clv_bgnbd_staticcov.R'
64
+ 'class_clv_data_dynamiccovariates.R'
59
65
'class_clv_fitted_dynamiccov.R'
66
+ 'class_clv_model_ggomnbd_nocov.R'
67
+ 'class_clv_ggomnbd.R'
68
+ 'class_clv_model_ggomnbd_staticcov.R'
69
+ 'class_clv_ggomnbd_staticcov.R'
60
70
'class_clv_model_pnbd.R'
61
71
'class_clv_model_pnbd_staticcov.R'
62
72
'class_clv_model_pnbd_dynamiccov.R'
0 commit comments