Skip to content

Commit

Permalink
Merge branch 'feature/curve-fit' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
kloppen committed Oct 22, 2023
2 parents 057917e + b5ab7cd commit 80d47fe
Show file tree
Hide file tree
Showing 25 changed files with 4,299 additions and 1 deletion.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@
^src/wasm/*
^vignettes/articles$
^logo.svg$
^data-raw$
9 changes: 8 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ URL: https://github.com/cmstatr/cmstatrExt,
BugReports: https://github.com/cmstatr/cmstatrExt/issues
License: AGPL-3
Imports:
Rcpp
dplyr,
generics,
Rcpp,
rlang (>= 0.4.0),
stats
LinkingTo: Rcpp,
testthat
SystemRequirements: C++17
Expand All @@ -35,3 +39,6 @@ Suggests:
Config/testthat/parallel: true
Config/testthat/edition: 3
VignetteBuilder: knitr
Depends:
R (>= 2.10)
LazyData: true
28 changes: 28 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,9 +1,37 @@
# Generated by roxygen2: do not edit by hand

S3method(augment,average_curve_lm)
S3method(augment,average_curve_optim)
S3method(print,average_curve_lm)
S3method(print,average_curve_optim)
S3method(summary,average_curve_lm)
export(augment)
export(average_curve_lm)
export(average_curve_optim)
export(iso_equiv_two_sample)
export(k_equiv_two_sample)
export(p_equiv)
export(p_equiv_two_sample)
export(power_sim_dual)
importFrom(Rcpp,sourceCpp)
importFrom(dplyr,filter)
importFrom(dplyr,group_by)
importFrom(dplyr,if_else)
importFrom(dplyr,mutate)
importFrom(dplyr,n)
importFrom(dplyr,n_groups)
importFrom(dplyr,select)
importFrom(dplyr,summarise)
importFrom(dplyr,ungroup)
importFrom(generics,augment)
importFrom(rlang,.data)
importFrom(rlang,`:=`)
importFrom(rlang,as_label)
importFrom(rlang,enquo0)
importFrom(rlang,f_lhs)
importFrom(rlang,f_rhs)
importFrom(rlang,warn)
importFrom(stats,lm)
importFrom(stats,optim)
importFrom(stats,predict.lm)
useDynLib(cmstatrExt, .registration = TRUE)
Loading

0 comments on commit 80d47fe

Please sign in to comment.