mirror of
https://github.com/msberends/AMR.git
synced 2024-12-26 17:26:12 +01:00
thesis advisors
This commit is contained in:
parent
6262315527
commit
bd9bcfef78
27
DESCRIPTION
27
DESCRIPTION
@ -7,19 +7,40 @@ Authors@R: c(
|
|||||||
given = c("Matthijs", "S."),
|
given = c("Matthijs", "S."),
|
||||||
family = "Berends",
|
family = "Berends",
|
||||||
email = "m.s.berends@umcg.nl",
|
email = "m.s.berends@umcg.nl",
|
||||||
role = c("aut", "cre"),
|
role = c("aut", "dis", "cre"),
|
||||||
comment = c(ORCID = "0000-0001-7620-1800")),
|
comment = c(ORCID = "0000-0001-7620-1800")),
|
||||||
person(
|
person(
|
||||||
given = c("Christian", "F."),
|
given = c("Christian", "F."),
|
||||||
family = "Luz",
|
family = "Luz",
|
||||||
email = "c.f.luz@umcg.nl",
|
email = "c.f.luz@umcg.nl",
|
||||||
role = c("aut", "ctb"),
|
role = c("aut", "dis"),
|
||||||
comment = c(ORCID = "0000-0001-5809-5995")),
|
comment = c(ORCID = "0000-0001-5809-5995")),
|
||||||
person(
|
person(
|
||||||
given = c("Erwin", "E.A."),
|
given = c("Erwin", "E.A."),
|
||||||
family = "Hassing",
|
family = "Hassing",
|
||||||
email = "e.hassing@certe.nl",
|
email = "e.hassing@certe.nl",
|
||||||
role = "ctb"))
|
role = "ctb"),
|
||||||
|
person(
|
||||||
|
given = "Corinna",
|
||||||
|
family = "Glasner",
|
||||||
|
email = "c.glasner@umcg.nl",
|
||||||
|
role = "ths",
|
||||||
|
comment = c(ORCID = "0000-0003-1241-1328")),
|
||||||
|
person(
|
||||||
|
given = c("Alex", "W."),
|
||||||
|
family = "Friedrich",
|
||||||
|
email = "alex.friedrich@umcg.nl",
|
||||||
|
role = c("ths", "ldr"),
|
||||||
|
comment = c(ORCID = "0000-0003-4881-038X")),
|
||||||
|
person(
|
||||||
|
given = "Bhanu",
|
||||||
|
family = "Sinha",
|
||||||
|
email = "b.sinha@umcg.nl",
|
||||||
|
role = "ths",
|
||||||
|
comment = c(ORCID = "0000-0003-1634-0010")),
|
||||||
|
person(
|
||||||
|
family = "University of Groningen",
|
||||||
|
role = "uvp"))
|
||||||
Description: Functions to simplify the analysis of Antimicrobial Resistance (AMR)
|
Description: Functions to simplify the analysis of Antimicrobial Resistance (AMR)
|
||||||
of microbial isolates, by using new S3 classes and applying EUCAST expert rules
|
of microbial isolates, by using new S3 classes and applying EUCAST expert rules
|
||||||
on antibiograms according to Leclercq (2013)
|
on antibiograms according to Leclercq (2013)
|
||||||
|
1
NEWS.md
1
NEWS.md
@ -58,6 +58,7 @@
|
|||||||
|
|
||||||
#### Other
|
#### Other
|
||||||
* Unit testing for all Linux and macOS releases of R 3.1 and higher: https://travis-ci.org/msberends/AMR
|
* Unit testing for all Linux and macOS releases of R 3.1 and higher: https://travis-ci.org/msberends/AMR
|
||||||
|
* Added thesis advisors to DESCRIPTION file
|
||||||
|
|
||||||
# 0.2.0 (latest stable version)
|
# 0.2.0 (latest stable version)
|
||||||
**Published on CRAN: 2018-05-03**
|
**Published on CRAN: 2018-05-03**
|
||||||
|
2
R/freq.R
2
R/freq.R
@ -326,7 +326,7 @@ frequency_tbl <- function(x,
|
|||||||
header <- header %>% paste0(' (unique: ', boxplot.stats(x)$out %>% n_distinct(), ')')
|
header <- header %>% paste0(' (unique: ', boxplot.stats(x)$out %>% n_distinct(), ')')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (any(class(x) == "rsi")) {
|
if (NROW(x) > 0 & any(class(x) == "rsi")) {
|
||||||
header <- header %>% paste0('\n')
|
header <- header %>% paste0('\n')
|
||||||
cnt_S <- sum(x == "S")
|
cnt_S <- sum(x == "S")
|
||||||
cnt_I <- sum(x == "I")
|
cnt_I <- sum(x == "I")
|
||||||
|
17
README.md
17
README.md
@ -6,14 +6,17 @@ This R package was created for academic research by PhD students of the Faculty
|
|||||||
:arrow_forward: Download it with `install.packages("AMR")` or see below for other possibilities.
|
:arrow_forward: Download it with `install.packages("AMR")` or see below for other possibilities.
|
||||||
|
|
||||||
## Authors
|
## Authors
|
||||||
|
<a href="https://orcid.org/0000-0001-7620-1800"><img src="https://cran.r-project.org/web/orcid.svg" height="16px"></a> Matthijs S. Berends<sup>1,2,a</sup>,
|
||||||
|
<a href="https://orcid.org/0000-0001-5809-5995"><img src="https://cran.r-project.org/web/orcid.svg" height="16px"></a> Christian F. Luz<sup>1,a</sup>,
|
||||||
|
Erwin E.A. Hassing<sup>2</sup>,
|
||||||
|
<a href="https://orcid.org/0000-0003-1241-1328"><img src="https://cran.r-project.org/web/orcid.svg" height="16px"></a> Corinna Glasner<sup>1,b</sup>,
|
||||||
|
<a href="https://orcid.org/0000-0003-4881-038X"><img src="https://cran.r-project.org/web/orcid.svg" height="16px"></a> Alex W. Friedrich<sup>1,b</sup>,
|
||||||
|
<a href="https://orcid.org/0000-0003-1634-0010"><img src="https://cran.r-project.org/web/orcid.svg" height="16px"></a> Bhanu Sinha<sup>1,b</sup>
|
||||||
|
|
||||||
- [Berends MS](https://github.com/msberends)<sup>1,2</sup>, PhD Student
|
<sup>1</sup> Department of Medical Microbiology, University of Groningen, University Medical Center Groningen, Groningen, the Netherlands<br>
|
||||||
- [Luz CF](https://github.com/ceefluz)<sup>1</sup>, PhD Student
|
<sup>2</sup> Certe Medical Diagnostics & Advice, Groningen, the Netherlands<br>
|
||||||
- [Hassing EEA](https://github.com/erwinhassing)<sup>2</sup>, Data Analyst (contributor)
|
<sup>a</sup> R package author and dissertant<br>
|
||||||
|
<sup>b</sup> Thesis advisor
|
||||||
<sup>1</sup> Department of Medical Microbiology, University of Groningen, University Medical Center Groningen, Groningen, the Netherlands
|
|
||||||
|
|
||||||
<sup>2</sup> Certe Medical Diagnostics & Advice, Groningen, the Netherlands
|
|
||||||
|
|
||||||
<a href="https://www.rug.nl"><img src="man/figures/logo_rug.png" height="60px"></a>
|
<a href="https://www.rug.nl"><img src="man/figures/logo_rug.png" height="60px"></a>
|
||||||
<a href="https://www.umcg.nl"><img src="man/figures/logo_umcg.png" height="60px"></a>
|
<a href="https://www.umcg.nl"><img src="man/figures/logo_umcg.png" height="60px"></a>
|
||||||
|
Loading…
Reference in New Issue
Block a user