-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from nutriverse:dev
update CITATION
- Loading branch information
Showing
7 changed files
with
64 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
bibentry( | ||
bibtype = "Manual", | ||
header = "To cite squeacr in publications use:", | ||
location = "Washington, DC", | ||
bibtype = "Book", | ||
header = "To cite sleacr in publications use:", | ||
title = "Semi-Quantitative Evaluation of Access and Coverage ({SQUEAC})/Simplified Lot Quality Assurance Sampling Evaluation of Access and Coverage ({SLEAC}) Technical Reference", | ||
url = "https://www.fantaproject.org/sites/default/files/resources/SQUEAC-SLEAC-Technical-Reference-Oct2012_0.pdf", | ||
publisher = "FHI 360/FANTA", | ||
author = "Myatt, Mark and Guevarra, Ernest and Fieschi, Lionella and Norris, Allison and Guerrero, Saul and Schofield, Lilly and Jones, Daniel and Emru, Ephrem and Sadler, Kate", | ||
year = "2012" | ||
) | ||
author = c(person("Mark Myatt"), person("Ernest Guevarra"), person("Lionella Fieschi"), person("Allison Norris"), person("Saul Guerrero"), person("Lilly Schofield"), person("Daniel Jones"), person("Ephrem Emru"), person("Kate Sadler")), | ||
year = "2012", | ||
publisher = "FHI 360/FANTA", | ||
address = "Washington, DC", | ||
url = "https://www.fantaproject.org/sites/default/files/resources/SQUEAC-SLEAC-Technical-Reference-Oct2012_0.pdf" | ||
) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Tests for calculate_median_muac function ------------------------------------- | ||
|
||
test_that("calculate_median_muac works as expected", { | ||
expect_type(calculate_median_muac(otp_beneficiaries$muac), "double") | ||
expect_type(calculate_muac_median(otp_beneficiaries$muac), "double") | ||
expect_type( | ||
calculate_median_muac(otp_beneficiaries$muac, otp_beneficiaries$locality), | ||
calculate_muac_median(otp_beneficiaries$muac, otp_beneficiaries$locality), | ||
"double" | ||
) | ||
}) |