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

edit table in std vignette #47

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
14 changes: 13 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -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}`.
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion data-raw/smartStd.R
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
Loading