From dbfe81b5766e2702830e22fcb9af1f4f60653d72 Mon Sep 17 00:00:00 2001 From: Indrajeet Patil Date: Mon, 3 Feb 2025 19:46:02 +0100 Subject: [PATCH] Update affiliation in JOSS paper (#2712) --- paper/paper.Rmd | 2 +- paper/paper.md | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/paper/paper.Rmd b/paper/paper.Rmd index 072cb1ef5..70042d24f 100644 --- a/paper/paper.Rmd +++ b/paper/paper.Rmd @@ -32,7 +32,7 @@ affiliations: - index: 3 name: Mathematisches Institut der Heinrich-Heine-Universität Düsseldorf - index: 4 - name: Preisenergie GmbH, Munich, Germany + name: Carl Zeiss AG, Germany - index: 5 name: Jumping Rivers - index: 6 diff --git a/paper/paper.md b/paper/paper.md index c7a35d658..958538c76 100644 --- a/paper/paper.md +++ b/paper/paper.md @@ -1,6 +1,6 @@ --- title: "Static Code Analysis for R" -date: "2024-12-02" +date: "2025-02-01" tags: ["R", "linter", "tidyverse"] authors: - name: Jim Hester @@ -32,7 +32,7 @@ affiliations: - index: 3 name: Mathematisches Institut der Heinrich-Heine-Universität Düsseldorf - index: 4 - name: Preisenergie GmbH, Munich, Germany + name: Carl Zeiss AG, Germany - index: 5 name: Jumping Rivers - index: 6 @@ -123,6 +123,7 @@ lint( text = "x >= 2.5", linters = redundant_ifelse_linter() ) +#> i No lints found. ``` - **Efficiency** @@ -155,6 +156,7 @@ lint( text = "anyNA(x)", linters = any_is_na_linter() ) +#> i No lints found. ``` - **Readability** @@ -187,6 +189,7 @@ lint( text = "x != 2", linters = comparison_negation_linter() ) +#> i No lints found. ``` - **Tidyverse style** @@ -214,6 +217,7 @@ lint( text = "my_var <- 1L", linters = object_name_linter() ) +#> i No lints found. ``` - **Common mistakes** @@ -287,6 +291,7 @@ lint( text = "my.var <- 1L", linters = object_name_linter(styles = "dotted.case") ) +#> i No lints found. ``` - Create new linters (by leveraging functions like