Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New: functions underlaying paper "A novel tool to access crosstalk in luminescence detection" Anna-Maartje de Boer, Luc Steinbuch #560

Merged
merged 16 commits into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ export(analyse_baSAR)
export(analyse_pIRIRSequence)
export(analyse_portableOSL)
export(apply_CosmicRayRemoval)
export(apply_Crosstalk)
export(apply_EfficiencyCorrection)
export(bin)
export(bin_RLum.Data)
Expand All @@ -114,6 +115,9 @@ export(calc_IEU)
export(calc_Lamothe2003)
export(calc_MaxDose)
export(calc_MinDose)
export(calc_MoransI)
export(calc_MoransI_expt_no_cor)
export(calc_MoransI_pseudo_p)
export(calc_OSLLxTxDecomposed)
export(calc_OSLLxTxRatio)
export(calc_SourceDoseRate)
Expand Down Expand Up @@ -150,6 +154,7 @@ export(fit_OSLLifeTimes)
export(fit_SurfaceExposure)
export(fit_ThermalQuenching)
export(get_Layout)
export(get_Neighbour)
export(get_Quote)
export(get_RLum)
export(get_Risoe.BINfileData)
Expand Down Expand Up @@ -179,11 +184,13 @@ export(plot_AbanicoPlot)
export(plot_DRCSummary)
export(plot_DRTResults)
export(plot_DetPlot)
export(plot_Disc)
export(plot_DoseResponseCurve)
export(plot_FilterCombinations)
export(plot_GrowthCurve)
export(plot_Histogram)
export(plot_KDE)
export(plot_MoranScatterplot)
export(plot_NRt)
export(plot_OSLAgeSummary)
export(plot_RLum)
Expand Down Expand Up @@ -302,6 +309,7 @@ importFrom(stats,coef)
importFrom(stats,complete.cases)
importFrom(stats,confint)
importFrom(stats,density)
importFrom(stats,dist)
importFrom(stats,dnorm)
importFrom(stats,fitted)
importFrom(stats,formula)
Expand Down
5 changes: 5 additions & 0 deletions NEWS.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ header-includes:

## New functions

* `apply_Crosstalk()`, `calc_MoransI()`, `calc_MoransI_expt_no_cor()`
`calc_MoransI_pseudo_p()`, `get_Neighbours()`, `plot_Disc()` and
`plot_MoranScatterplot()` were contribute by Anna-Maartje de Boer and Luc
Steinbuch (#560).

* `calc_EED_Model()` models incomplete and heterogeneous bleaching of
mobile grains after Guibert et al. (2017). Along with the function, the
new `ExampleData.MortarData` data set was added.
Expand Down
7 changes: 6 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@

<!-- NEWS.md was auto-generated by NEWS.Rmd. Please DO NOT edit by hand!-->

# Changes in version 0.9.26.9000-107 (2025-01-31)
# Changes in version 0.9.26.9000-107 (2025-02-06)

## New functions

- `apply_Crosstalk()`, `calc_MoransI()`, `calc_MoransI_expt_no_cor()`
`calc_MoransI_pseudo_p()`, `get_Neighbours()`, `plot_Disc()` and
`plot_MoranScatterplot()` were contribute by Anna-Maartje de Boer and
Luc Steinbuch (#560).

- `calc_EED_Model()` models incomplete and heterogeneous bleaching of
mobile grains after Guibert et al. (2017). Along with the function,
the new `ExampleData.MortarData` data set was added.
Expand Down
2 changes: 1 addition & 1 deletion R/Luminescence-package.R
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
#'
#' @importFrom graphics plot plot.default frame abline mtext text lines par layout lines arrows axTicks axis barplot box boxplot contour curve grconvertX grconvertY hist legend persp points polygon rug segments title grid close.screen screen split.screen
#' @importFrom grDevices adjustcolor axisTicks colorRampPalette gray.colors rgb topo.colors xy.coords dev.off
#' @importFrom stats formula approx as.formula complete.cases density dnorm glm integrate lm median na.exclude na.omit nls nls.control pchisq pnorm quantile rnorm runif sd smooth smooth.spline spline t.test uniroot var weighted.mean setNames coef confint predict update residuals fitted qf
#' @importFrom stats formula approx as.formula complete.cases density dist dnorm glm integrate lm median na.exclude na.omit nls nls.control pchisq pnorm quantile rnorm runif sd smooth smooth.spline spline t.test uniroot var weighted.mean setNames coef confint predict update residuals fitted qf
RLumSK marked this conversation as resolved.
Show resolved Hide resolved
#' @importFrom parallel parLapply makeCluster stopCluster
#' @importFrom httr GET accept_json status_code content
#'
Expand Down
Loading