forked from sslarch/sslarch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.Rmd
More file actions
51 lines (37 loc) · 2.93 KB
/
index.Rmd
File metadata and controls
51 lines (37 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<div class = "ascii_art_wrapper">
<div class = "ascii_art">
```
_____ _____ _____ _____ _____ _
/ ____|_ _/ ____| / ____/ ____| | /\
| (___ | || | __ | (___| (___ | | / \
\___ \ | || | |_ | \___ \\___ \| | / /\ \
____) |_| || |__| | ____) |___) | |___ / ____ \
|_____/|_____\_____| |_____/_____/|_____/_/ \_\
```
<!-- http://patorjk.com/software/taag/#p=author&f=Big&t=SIG%20SSLA -->
</div>
</div>
## Special Interest Group on Scientific Scripting Languages in Archaeology
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
htmltools::tagList(rmarkdown::html_dependency_font_awesome())
```
This [CAA International](https://caa-international.org) [Special Interest Group ](https://caa-international.org/special-interest-groups) (SIG) focusses on the application of [Scripting Languages](https://en.wikipedia.org/wiki/Scripting_language) in archaeological research. To learn more about the purpose and goals of this SIG take a look at our [Statement of purpose](https://sslarch.github.io/statement.html).
If you are working in the field of quantitative archaeology, if you are using scripting languages as part of your analysis and daily work, and if you would like to contribute and take part in the decision making of this group, please feel free and encouraged to contact us on our <i class="fa fa-google"></i> [Google Mailing List](https://groups.google.com/forum/#!forum/scientific-scripting-languages-in-archaeology), join the discussions in our various <i class="fa fa-github"></i> [Github projects](https://github.com/sslarch) or take part in our sessions and workshops at the CAA conference.
### Background
At the CAA 2018 Tübingen we had a session on R as archaeological tool. Within this session all papers showed a very high standard of utilisation of R for archaeological questions, and a huge variety of different approaches. Lively discussions on teaching R to students and colleagues followed, and the question arose how we can make our preferred analytical framework more open and accessible to other interested parties.
From these events and discussions emerged a proposal to form a Special Interest Group at CAA International to have a permanent platform to exchange and discuss ideas, and to develop the practical benefits of R for archaeological applications. Following further discussion with colleagues it became clear that it would be a good idea to include other scripting languages, eg. python, into this SIG.
### Members
```{r, echo=FALSE, message=FALSE}
library(magrittr)
linkify <- function(x, url) { ifelse(x != "", paste0("[",x,"](",url,"/",x,")"),"") }
readr::read_tsv("members.tsv") %>%
replace(is.na(.), "") %>%
dplyr::mutate(
Role = factor(Role, levels = c("Convener", "Vice Convener", "Secretary", "Member")),
Github = linkify(Github, "https://github.com"),
ORCID = linkify(ORCID, "https://orcid.org")
) %>%
dplyr::arrange(Role, Name) %>%
knitr::kable()
```