-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add slash to name * Fix Pareto/NBD print name (#201) * Update author name * Formula interface (#203) * Github actions: Upgrade to v2 (#214) * clvdata: Plot Transaction Timings (#213) * Housekeeping: Makevars (#217) * Run tests in parallel (#216) * Draw other models in same plot (#215) * PNBD Dyncov Rcpp (#205) * Update docu: continuous discount rate (#223) * Drop explicit c++11 specification * Prepare release * Fix CRAN CPU usage & fix docu
- Loading branch information
Showing
137 changed files
with
6,041 additions
and
2,704 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Package: CLVTools | ||
Title: Tools for Customer Lifetime Value Estimation | ||
Version: 0.9.0 | ||
Date: 2022-01-07 | ||
Version: 0.10.0 | ||
Date: 2023-10-23 | ||
Authors@R: c( | ||
person(given="Patrick", family="Bachmann", email = "[email protected]", role = c("cre","aut")), | ||
person(given="Niels", family="Kuebler", email = "[email protected]", role = "aut"), | ||
person(given="Markus", family="Meierer", email = "[email protected]", role = "aut"), | ||
person(given="Jeffrey", family="Naef", email = "[email protected]",role = "aut"), | ||
person(given="Elliot", family="Oblander", email = "[email protected]",role = "aut"), | ||
person(given="E. Shin", family="Oblander", email = "[email protected]",role = "aut"), | ||
person(given="Patrik", family="Schilter", email = "[email protected]",role = "aut") | ||
) | ||
Depends: | ||
|
@@ -33,6 +33,7 @@ Description: | |
Further, we provide an implementation of the Gamma/Gamma model to model the spending process of individuals. | ||
Imports: | ||
data.table (>= 1.12.0), | ||
Formula (>= 1.2-4), | ||
ggplot2 (>= 3.2.0), | ||
lubridate (>= 1.7.8), | ||
Matrix (>= 1.2-17), | ||
|
@@ -45,19 +46,20 @@ Suggests: | |
covr, | ||
knitr, | ||
rmarkdown, | ||
testthat | ||
xml2, | ||
testthat (>= 3.0.0) | ||
License: GPL-3 | ||
URL: https://github.com/bachmannpatrick/CLVTools | ||
BugReports: https://github.com/bachmannpatrick/CLVTools/issues | ||
NeedsCompilation: yes | ||
SystemRequirements: C++11 | ||
LinkingTo: Rcpp, RcppArmadillo (>= 0.9.500.2.0), RcppGSL (>= 0.3.7) | ||
LinkingTo: Rcpp, RcppArmadillo (>= 0.9.500.2.0), RcppGSL (>= 0.3.7), testthat | ||
LazyLoad: yes | ||
Encoding: UTF-8 | ||
Collate: | ||
'CLVTools.R' | ||
'RcppExports.R' | ||
'all_generics.R' | ||
'catch-routine-registration.R' | ||
'class_clv_time.R' | ||
'class_clv_data.R' | ||
'class_clv_model.R' | ||
|
@@ -112,12 +114,14 @@ Collate: | |
'f_interface_clvdata.R' | ||
'f_interface_gg.R' | ||
'f_interface_ggomnbd.R' | ||
'f_interface_latentattrition.R' | ||
'f_interface_pmf.R' | ||
'f_interface_pnbd.R' | ||
'f_interface_predict_clvfittedspending.R' | ||
'f_interface_predict_clvfittedtransactions.R' | ||
'f_interface_setdynamiccovariates.R' | ||
'f_interface_setstaticcovariates.R' | ||
'f_interface_spending.R' | ||
'f_s3generics_clvdata.R' | ||
'f_s3generics_clvdata_dynamiccov.R' | ||
'f_s3generics_clvdata_plot.R' | ||
|
@@ -137,10 +141,10 @@ Collate: | |
'pnbd_dyncov_BkSum.R' | ||
'pnbd_dyncov_CET.R' | ||
'pnbd_dyncov_DECT.R' | ||
'pnbd_dyncov_LL.R' | ||
'pnbd_dyncov_createwalks.R' | ||
'pnbd_dyncov_expectation.R' | ||
'pnbd_dyncov_makewalks.R' | ||
'pnbd_dyncov_palive.R' | ||
RoxygenNote: 7.1.2 | ||
RoxygenNote: 7.2.3 | ||
VignetteBuilder: knitr | ||
Config/testthat/parallel: false | ||
Config/testthat/edition: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# This dummy function definition is included with the package to ensure that | ||
# 'tools::package_native_routine_registration_skeleton()' generates the required | ||
# registration info for the 'run_testthat_tests' symbol. | ||
(function() { | ||
.Call("run_testthat_tests", FALSE, PACKAGE = "CLVTools") | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.