Skip to content

Commit

Permalink
refactor code in the Spanish README (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
maelle authored Aug 19, 2024
1 parent 7b1ae4d commit a11e257
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 99 deletions.
98 changes: 45 additions & 53 deletions README.es.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -85,71 +85,63 @@ Nuestro proceso de revisión está en constante desarrollo de modo que promovemo

### Editores/as asociados/as

El proceso de revisión por pares del software de rOpenSci está dirigido por:
```{r}
#| echo: false
#| results: 'asis'
source(file.path("scripts", "airtable-get-data.R"), local = knitr::knit_global())
```


* [Noam Ross](https://github.com/noamross), EcoHealth Alliance, EEUU;
* [Karthik Ram](https://github.com/karthik), rOpenSci, EEUU;
* [Maëlle Salmon](https://github.com/maelle), rOpenSci, Francia;
* [Anna Krystalli](https://github.com/annakrystalli), University of Sheffield RSE, Reino Unido;
* [Mauro Lepore](https://github.com/maurolepore), 2 Degrees Investing Initiative, EEUU;
* [Laura DeCicco](https://github.com/ldecicco-USGS), USGS, EEUU;
* [Julia Gustavsen](https://github.com/jooolia), Agroscope, Suiza;
* [Emily Riederer](https://github.com/emilyriederer), Capital One, EEUU;
* [Adam Sparks](https://github.com/adamhsparks), Department of Primary Industries and Regional Development;
* [Jeff Hollister](https://github.com/jhollist), US Environmental Protection Agency.
### Líder Editorial

```{r}
#| echo: false
#| results: 'asis'
out <- paste0(
"Cambiamos lideres editoriales, aproximadamente cada 3 meses. ",
"Hoy es [", eic_name, "](https://github.com/",
eic_github, ").\n"
)
cat(out, sep = "")
Editores/as asociados/as para software estadístico son:
```


- [Ben Bolker](https://github.com/bbolker), McMaster University, Canadá;
- [Rebecca Killick](https://github.com/rkillick), Lancaster University, Reino Unido;
- [Stephanie Hicks](https://github.com/stephaniehicks), Johns Hopkins University, EEUU;
- [Paula Moraga](https://github.com/Paula-Moraga), King Abdullah University of Science and Technology, Arabia Saudita;
- [Leonardo Collado-Torres](https://github.com/lcolladotor), Lieber Institute for Brain Development, EEUU;
- [Toby Hocking](https://github.com/tdhock), Northern Arizona University, EEUU.
### Equipo editorial asociado

### Revisión y edición invitada
Nuestro equipo editorial asociado incluye:

Agradecemos a las siguientes personas, quienes ofrecieron su tiempo y experiencia para revisar paquetes enviados a rOpenSci:
```{r}
#| echo: false
#| results: 'asis'
source(file.path("scripts", "airtable-get-editors.R"), local = knitr::knit_global())
```{r reviewers, echo=FALSE, results='asis'}
if (Sys.getenv("AIRTABLE_API_KEY") == ""){
Sys.setenv(AIRTABLE_API_KEY = params$AIRTABLE_API_KEY)
}
if (Sys.getenv("AIRTABLE_ID") == ""){
Sys.setenv(AIRTABLE_ID = params$AIRTABLE_ID)
}
editors <- c(
"Noam Ross", "Karthik Ram", "Maëlle Salmon",
"Anna Krystalli", "Mauro Lepore",
"Laura DeCicco", "Julia Gustavsen",
"Emily Riederer", "Adam Sparks", "Jeff Hollister"
)
reviewers <- airtabler::airtable(base = Sys.getenv("AIRTABLE_ID"),
table = "reviewers-prod")
reviewers <- reviewers$`reviewers-prod`$select_all()
reviewers <- reviewers[purrr::map_lgl(reviewers$reviews,
~!is.null(.)) &
!(reviewers$name %in% c(editors, "???")), ]
# get last names
last_names <- humaniformat::last_name(trimws(reviewers$name))
reviewers <- reviewers[order(last_names), ]
reviewers$name[is.na(reviewers$name)] <- reviewers$github[is.na(reviewers$name)]
cat(paste0("[", reviewers$name, "](https://github.com/", reviewers$github, ")", collapse = " \U00B7 "))
```

También agradecemos a las siguientes personas que tomaron el rol de edición de forma invitada.

### Revisión y edición invitada

Agradecemos a las siguientes personas, quienes ofrecieron su tiempo y experiencia para revisar paquetes enviados a rOpenSci:

```{r}
#| echo: false
#| results: 'asis'
guest_editors <- airtabler::airtable(base = "app8dssb6a7PG6Vwj",
table = "guest-editors")
guest_editors <- guest_editors$`guest-editors`$select_all()
guest_editors <- guest_editors[!(guest_editors$name %in% c(editors, "???")), ]
# get last names
last_names <- humaniformat::last_name(trimws(guest_editors$name))
guest_editors <- guest_editors[order(last_names), ]
cat(paste0("[", guest_editors$name, "](https://github.com/", guest_editors$github, ")", collapse = " \U00B7 "))
source(file.path("scripts", "airtable-get-reviewers.R"), local = knitr::knit_global())
```

También agradecemos a las siguientes personas que tenian antes el rol de revisión.

```{r editors_past, echo=FALSE, results='asis'}
cat(gen_ed_out(editors_past), sep = "")
```


También agradecemos a las siguientes personas que tomaron el rol de edición de forma invitada.

```{r guest-editors-out, echo=FALSE, results='asis'}
cat(gen_ed_out(guest_editors), sep = "")
```


100 changes: 54 additions & 46 deletions README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,37 +127,40 @@ ropensci/software-review-meta](https://github.com/ropensci/software-review-meta/

### Editores/as asociados/as

El proceso de revisión por pares del software de rOpenSci está dirigido
por:

- [Noam Ross](https://github.com/noamross), EcoHealth Alliance, EEUU;
- [Karthik Ram](https://github.com/karthik), rOpenSci, EEUU;
- [Maëlle Salmon](https://github.com/maelle), rOpenSci, Francia;
- [Anna Krystalli](https://github.com/annakrystalli), University of
Sheffield RSE, Reino Unido;
- [Mauro Lepore](https://github.com/maurolepore), 2 Degrees Investing
Initiative, EEUU;
- [Laura DeCicco](https://github.com/ldecicco-USGS), USGS, EEUU;
- [Julia Gustavsen](https://github.com/jooolia), Agroscope, Suiza;
- [Emily Riederer](https://github.com/emilyriederer), Capital One, EEUU;
- [Adam Sparks](https://github.com/adamhsparks), Department of Primary
Industries and Regional Development;
- [Jeff Hollister](https://github.com/jhollist), US Environmental
Protection Agency.
### Líder Editorial

Editores/as asociados/as para software estadístico son:
Cambiamos lideres editoriales, aproximadamente cada 3 meses. Hoy es
[Adam Sparks](https://github.com/adamhsparks).

- [Ben Bolker](https://github.com/bbolker), McMaster University, Canadá;
- [Rebecca Killick](https://github.com/rkillick), Lancaster University,
Reino Unido;
- [Stephanie Hicks](https://github.com/stephaniehicks), Johns Hopkins
University, EEUU;
- [Paula Moraga](https://github.com/Paula-Moraga), King Abdullah
University of Science and Technology, Arabia Saudita;
- [Leonardo Collado-Torres](https://github.com/lcolladotor), Lieber
Institute for Brain Development, EEUU;
### Equipo editorial asociado

Nuestro equipo editorial asociado incluye:

- [Laura DeCicco](https://github.com/ldecicco-usgs);
- [Julia Gustavsen](https://github.com/jooolia), Agroscope;
- [Jouni Helske](https://github.com/helske), University of Jyväskylä,
Finland;
- [Toby Hocking](https://github.com/tdhock), Northern Arizona
University, EEUU.
University, USA;
- [Jeff Hollister](https://github.com/jhollist), US Environmental
Protection Agency;
- [Rebecca Killick](https://github.com/rkillick), Lancaster University,
U.K.;
- [Anna Krystalli](https://github.com/annakrystalli);
- [Mauro Lepore](https://github.com/maurolepore), 2 Degrees Investing
Initiative;
- [Beatriz Milz](https://github.com/beatrizmilz), University of Sao
Paulo - Institute of Energy and Environment;
- [Emily Riederer](https://github.com/emilyriederer), Capital One;
- [Francisco Rodriguez-Sanchez](https://github.com/Pakillo), Universidad
de Sevilla, Spain;
- [Noam Ross](https://github.com/noamross), rOpenSci and EcoHealth
Alliance;
- [Maëlle Salmon](https://github.com/maelle), rOpenSci;
- [Margaret Siple](https://github.com/mcsiple), National Oceanic and
Atmospheric Administration;
- [Emi Tanaka](https://github.com/emitanaka), Australian National
University.

### Revisión y edición invitada

Expand All @@ -166,8 +169,7 @@ experiencia para revisar paquetes enviados a rOpenSci:

[Sam Albers](https://github.com/boshek) · [Toph
Allen](https://github.com/toph-allen) · [Kaique dos S.
Alves](https://github.com/AlvesKS) · [Brooke
Anderson](https://github.com/geanders) · [Alison
Alves](https://github.com/AlvesKS) · [Alison
Appling](https://github.com/aappling-usgs) · [Denisse Fierro
Arcos](https://github.com/lidefi87) · [Zebulun
Arendsee](https://github.com/arendsee) · [Taylor
Expand Down Expand Up @@ -208,8 +210,7 @@ Calderón](https://github.com/quishqa) · [Carlos
Cámara-Menoyo](https://github.com/ccamara) · [Brad
Cannell](https://github.com/brad-cannell) · [Joaquin
Cavieres](https://github.com/jcavieresg) · [Kevin
Cazelles](https://github.com/KevCaz) · [Scott
Chamberlain](https://github.com/sckott) · [Cathy
Cazelles](https://github.com/KevCaz) · [Cathy
Chamberlin](https://github.com/chamberlinc) · [Jennifer
Chang](https://github.com/j23414) · [Pierre
Chausse](https://github.com/pchausse) · [Jorge
Expand Down Expand Up @@ -331,13 +332,11 @@ Mecum](https://github.com/amoeba) · [Nolwenn Le
Meur](https://github.com/nolwenn) · [François
Michonneau](https://github.com/fmichonneau) · [Mario
Miguel](https://github.com/leocadio-miguel) · [Helen
Miller](https://github.com/helenmiller16) · [Beatriz
Milz](https://github.com/beatrizmilz) · [Jessica
Miller](https://github.com/helenmiller16) · [Jessica
Minnier](https://github.com/jminnier) · [Priscilla
Minotti](https://github.com/pmnatural) · [Nichole
Monhait](https://github.com/nmonhait) · [Kelsey
Montgomery](https://github.com/kelshmo) · [Paula
Moraga](https://github.com/Paula-Moraga) · [Natalia
Montgomery](https://github.com/kelshmo) · [Natalia
Morandeira](https://github.com/nmorandeira) · [Ross
Mounce](https://github.com/rossmounce) · [Athanasia Monika
Mowinckel](https://github.com/drmowinckels) · [Lincoln
Expand Down Expand Up @@ -381,8 +380,7 @@ Richardson](https://github.com/nealrichardson) · [tyler
rinker](https://github.com/trinker) · [Emily
Robinson](https://github.com/robinsones) · [David
Robinson](https://github.com/dgrtwo) · [Alec
Robitaille](https://github.com/robitalec) · [Francisco
Rodriguez-Sanchez](https://github.com/Pakillo) · [Sam
Robitaille](https://github.com/robitalec) · [Sam
Rogers](https://github.com/rogerssam) · [Julia
Romanowska](https://github.com/jromanowska) · [Xavier
Rotllan-Puig](https://github.com/xavi-rp) · [Bob
Expand All @@ -400,12 +398,12 @@ Schwantes](https://github.com/collinschwantes) · [Marco
Sciaini](https://github.com/marcosci) · [Eric
Scott](https://github.com/Aariq) · [Heidi
Seibold](https://github.com/HeidiSeibold) · [Julia
Silge](https://github.com/juliasilge) · [Margaret
Siple](https://github.com/mcsiple) · [Peter
Silge](https://github.com/juliasilge) · [Peter
Slaughter](https://github.com/gothub) · [Mike
Smith](https://github.com/grimbough) · [Tuija
Sonkkila](https://github.com/tts) · [Øystein
Sørensen](https://github.com/osorensen) · [Jemma
Sørensen](https://github.com/osorensen) · [Adam
Sparks](https://github.com/adamhsparks) · [Jemma
Stachelek](https://github.com/jsta) · [Christine
Stawitz](https://github.com/ChristineStawitz-NOAA) · [Irene
Steves](https://github.com/isteves) · [Kelly
Expand All @@ -414,8 +412,7 @@ Strimas-Mackey](https://github.com/mstrimas) · [Alex
Stringer](https://github.com/awstringer1) · [Michael
Sumner](https://github.com/mdsumner) · [Chung-Kai
Sun](https://github.com/cksun-usc) · [Sarah
Supp](https://github.com/sarahsupp) · [Emi
Tanaka](https://github.com/emitanaka) · [Jason
Supp](https://github.com/sarahsupp) · [Jason
Taylor](https://github.com/jmt2080ad) · [Filipe
Teixeira](https://github.com/FilipeamTeixeira) · [Andy
Teucher](https://github.com/ateucher) · [Jennifer
Expand Down Expand Up @@ -475,9 +472,20 @@ Zwart](https://github.com/jzwart) · [Felipe](https://github.com/OldLipe)
[becarioprecario](https://github.com/becarioprecario) ·
[gaurav](https://github.com/soodoku)

También agradecemos a las siguientes personas que tenian antes el rol de
revisión.

- [Brooke Anderson](https://github.com/geanders);
- [Scott Chamberlain](https://github.com/sckott);
- [Paula Moraga](https://github.com/Paula-Moraga), King Abdullah
University of Science and Technology (KAUST), Saudi Arabia;
- [Karthik Ram](https://github.com/karthik), University of California,
Berkeley, rOpenSci;
- [Melina Vidoni](https://github.com/melvidoni).

También agradecemos a las siguientes personas que tomaron el rol de
edición de forma invitada.

[Ana Laura Diedrichs](https://github.com/anadiedrichs) · [Francisco
Rodriguez-Sanchez](https://github.com/Pakillo) · [Hao
Zhu](https://github.com/haozhu233)
- [Ana Laura Diedrichs](https://github.com/anadiedrichs);
- [Adam Sparks](https://github.com/adamhsparks);
- [Hao Zhu](https://github.com/haozhu233).

0 comments on commit a11e257

Please sign in to comment.