From d6e8cae4132f267c40eec3143091b535290d6553 Mon Sep 17 00:00:00 2001 From: Ernest Guevarra Date: Wed, 18 Dec 2024 09:09:16 +0000 Subject: [PATCH] edit table in std vignette --- NEWS.md | 14 +++++++++++++- README.Rmd | 2 +- README.md | 6 +++--- data-raw/smartStd.R | 2 +- 4 files changed, 18 insertions(+), 6 deletions(-) diff --git a/NEWS.md b/NEWS.md index 862117d..340a0a8 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,15 @@ +# anthrocheckr v0.1.0.9000 + +This is an R Universe and GitHub-only release. + +## New features + +* Added introduction, standardisation, and technical error of measurement vignettes; + + + + + # anthrocheckr v0.0.0.9000 -This is a pre-release of `anthrocheckr`. +This is a pre-release of `{anthrocheckr}`. diff --git a/README.Rmd b/README.Rmd index 9933f66..9147a24 100644 --- a/README.Rmd +++ b/README.Rmd @@ -148,7 +148,7 @@ calculate_relative_tem(intra_tem$tem, mean_weight$mean) ## Citation -If you find the `{anthrocheckr}` package useful please cite using the suggested citation provided by a call to the `citation()` function as follows: +If you use the `{anthrocheckr}` package in your work, please cite using the suggested citation provided by a call to the `citation()` function as follows: ```{r citation} citation("anthrocheckr") diff --git a/README.md b/README.md index 732c95c..631a8d9 100644 --- a/README.md +++ b/README.md @@ -195,9 +195,9 @@ calculate_relative_tem(intra_tem$tem, mean_weight$mean) ## Citation -If you find the `{anthrocheckr}` package useful please cite using the -suggested citation provided by a call to the `citation()` function as -follows: +If you use the `{anthrocheckr}` package in your work, please cite using +the suggested citation provided by a call to the `citation()` function +as follows: ``` r citation("anthrocheckr") diff --git a/data-raw/smartStd.R b/data-raw/smartStd.R index e42ea27..57c7dab 100644 --- a/data-raw/smartStd.R +++ b/data-raw/smartStd.R @@ -65,7 +65,7 @@ smartStd <- data.frame(subject, observer, y) usethis::use_data(smartStd, overwrite = TRUE) # -# Convert to long format with first measurements and second measurements on spearate columns +# Convert to long format with first measurements and second measurements on separate columns # xx <- subset(smartStd, select = c(-weight2, -height2, -muac2)) names(xx) <- c("subject", "observer", "weight", "height", "muac")