diff --git a/R/lpcde/DESCRIPTION b/R/lpcde/DESCRIPTION index 29a571e..67badfb 100644 --- a/R/lpcde/DESCRIPTION +++ b/R/lpcde/DESCRIPTION @@ -1,13 +1,13 @@ Package: lpcde Type: Package Title: Boundary Adaptive Local Polynomial Conditional Density Estimator -Version: 0.1.2 +Version: 0.1.3 Authors@R: person(given = "Rajita", family = "Chandak", role = c("aut", "cre"), email = "rchandak@princeton.edu" ) Maintainer: Rajita Chandak -Description: Tools for estimation and inference of conditional densities, derivatives and functions. This is the companion software for Cattaneo, Chandak, Jansson and Ma (2024) . +Description: Tools for estimation and inference of conditional densities, derivatives and functions. This is the companion software for Cattaneo, Chandak, Jansson and Ma (2024) . Depends: R (>= 3.3.0) License: GPL-2 Encoding: UTF-8 diff --git a/R/lpcde/NEWS.md b/R/lpcde/NEWS.md index 8e0b68e..4b050ef 100644 --- a/R/lpcde/NEWS.md +++ b/R/lpcde/NEWS.md @@ -1,3 +1,8 @@ +# lpcde 0.1.3 +- Fixed uniform CB construction +- added rbc flag for plotting +- Fixed re-scaling of inputs + # lpcde 0.1.2 - Added flags for returning normalized and/or non-negative estimate - Added option to change automatic grid spacing (options include quantile and equally-spaced grid generation). Functionality available for lpcde and lpbwcde. diff --git a/R/lpcde/R/RcppExports.R b/R/lpcde/R/RcppExports.R index 5bcf458..28a2bd9 100644 --- a/R/lpcde/R/RcppExports.R +++ b/R/lpcde/R/RcppExports.R @@ -4,7 +4,7 @@ #' @title All Sums in C++ (Internal Function) #' @description Function that prints all combinations of natural numbers that #' add up to target value. -#' @param Target target value for sum. +#' @param target Target value for sum. #' @return List of combinations that add up to target value. #' @keywords internal print_all_sumC <- function(target) { diff --git a/R/lpcde/cran-comments.md b/R/lpcde/cran-comments.md deleted file mode 100644 index 0d04a9c..0000000 --- a/R/lpcde/cran-comments.md +++ /dev/null @@ -1,15 +0,0 @@ -## R CMD check results -This is my first submission. -There were no ERRORs, WARNINGs OR NOTEs. - -## Downstream Dependencies -There are currently no downstream dependencies for this package. - -## R CMD check on win_devel -* checking CRAN incoming feasibility ... NOTE -Maintainer: 'Rajita Chandak ' - -New submission - -This is my first submission. -There were no other NOTEs, ERRORs or WARNINGs. diff --git a/R/lpcde/man/print_all_sumC.Rd b/R/lpcde/man/print_all_sumC.Rd index 037a02d..dc1919e 100644 --- a/R/lpcde/man/print_all_sumC.Rd +++ b/R/lpcde/man/print_all_sumC.Rd @@ -7,7 +7,7 @@ print_all_sumC(target) } \arguments{ -\item{Target}{target value for sum.} +\item{target}{Target value for sum.} } \value{ List of combinations that add up to target value. diff --git a/R/lpcde/src/utilsC.cpp b/R/lpcde/src/utilsC.cpp index 83196f1..4ca8bcf 100644 --- a/R/lpcde/src/utilsC.cpp +++ b/R/lpcde/src/utilsC.cpp @@ -52,7 +52,7 @@ void print_all_sum_rec( //' @title All Sums in C++ (Internal Function) //' @description Function that prints all combinations of natural numbers that //' add up to target value. -//' @param Target target value for sum. +//' @param target Target value for sum. //' @return List of combinations that add up to target value. //' @keywords internal // [[Rcpp::export]]