-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path090-backmatter.xyz
88 lines (42 loc) · 2.44 KB
/
090-backmatter.xyz
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
\backmatter
# Backmatter
## Colophon
This document is typeset with LaTeX using a custom template based on KOMA-script SCRBOOK class. The layout is based on a standard A4 paper (210 x 297mm), with 40mm margins and 10mm of binding offset.
The typesetting software used the XeTeX engine and the text is set in the open source IBM Plex font family -- in Serif, Sans Serif and Monospace variants.
## Credits
This project is constituted by files written in Markdown syntax and exported either as a standalone website both as printer-ready product. This is due to the awesome work of the people behind different libraries:
* [Pandoc](https://bookdown.org)
* [Bookdown](https://bookdown.org)
* [RMarkdown](https://bookdown.org) and [R](https://bookdown.org) environment.
As well, for the computational infrastructure, some tools have been used:
* [NLTK](https://bookdown.org)
* UDPIPE
* SciPY
## About the author
I am a Graduate Researcher involved in a Ph.D. Program in Italian Linguistics at the Department of Romance Studies in the Faculty of Philosophy at Palacky University in Olomouc, Czech Republic.
My interests span across digital humanities, syntax theories and computational linguistics.
Feel free to write me at [marco.petolicchio@gmail.com](mailto:marco.petolicchio@gmail.com) or visit [marcopetolicchio.com](http://marcopetolicchio.com) for the detailed contact list.
## Progress in the repository
This graph represents the addition and deletion amount in the files of the project in function of time.
```{r fig.width=7, fig.height=4, echo=FALSE, message=FALSE}
library(ggplot2)
library(knitr)
options(kableExtra.latex.load_packages = FALSE)
library(kableExtra)
dat <- read.csv("gitstats.csv", header=FALSE)
dat[is.na(dat)] <- 0
mat <- as.matrix(dat)
times <- mat[,3]
fileChanged <- mat[,5]
adds <- mat[,6]
dels <- mat[,7]
times <- as.Date(times)
prova <- ggplot(dat, aes(x=times, y=cumsum(adds))) + geom_line()
dels <- as.integer(dels) * -1
diffs <- as.integer(adds) + as.integer(dels)
prova2 <- ggplot(dat, aes(x=times, y=diffs)) + geom_line()
out <- ggplot() + geom_point(data=dat, aes(x=times, y=cumsum(adds), color = "Additions")) + geom_point(data=dat, aes(x=times, y=cumsum(dels), color = "Deletions")) + geom_line(data=dat, aes(x=times, y=cumsum(diffs), color = "Difference")) + geom_point(data=dat, aes(x=times, y=cumsum(fileChanged), color = "Files Changed"))
#+ xlab('Dates') + ylab('Edits')
print(out)
#kable(dat[,3:7])
```