-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.Rmd
More file actions
72 lines (51 loc) · 4.4 KB
/
index.Rmd
File metadata and controls
72 lines (51 loc) · 4.4 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
title: "Text as Data"
subtitle: "An introduction to quantitative text analysis and reproducible research with R"
author: "Jerid Francom"
date: "`r format(Sys.Date(), '%B %d, %Y')` (latest version)"
site: bookdown::bookdown_site
bibliography: [coursebook.bib, packages.bib]
biblio-style: apalike
csl: /Users/francojc/Documents/Styles/apa-no-doi-no-issue.csl
link-citations: yes
links-as-notes: true
url: https://lin380.github.io/coursebook/
github-repo: lin380/coursebook
twitter-handle: jeridfrancom
description: "Textbook"
cover-image: assets/images/logo.png
---
# Welcome {-}
```{r, child="_common.Rmd"}
```
<p style="font-weight:bold; color:red;">INCOMPLETE DRAFT</p>
<!-- <img src="assets/images/logo.png" width="250" alt="Cover image" align="right" style="margin: 0 1em 0 1em; border-color: white;" /> -->
This textbook is an introduction to the fundamental concepts and practical programming skills from Data Science that are increasingly employed in a variety of language-centered fields and sub-fields applied to the task of quantitative text analysis. It is geared towards advanced undergraduates, graduate students, and researchers looking to expand their methodological toolbox.
The content is currently under development. Feedback is welcome and can be provided through the [hypothes.is](https://web.hypothes.is/) service. A toolbar interface to this service is located on the right sidebar. To register for a free account and join the "text_as_data" annotation group [follow this link](https://hypothes.is/groups/WkoaXnBX/text-as-data). Suggestions and changes that are incorporated will be [acknowledged](#acknowledgements).
**Author**
Dr. Jerid Francom is Associate Professor of Spanish and Linguistics at Wake Forest University. His research focuses on the use of large-scale language archives (corpora) from a variety of sources (news, social media, and other internet sources) to better understand the linguistic and cultural similarities and differences between language varieties for both scholarly and pedagogical projects. He has published on topics including the development, annotation, and evaluation of linguistic corpora and analyzed corpora through corpus, psycholinguistic, and computational methodologies. He also has experience working with and teaching statistical programming with R.
## License {-}
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/3.0/us/88x31.png" /></a><br />This work by [Jerid C. Francom](https://francojc.github.io/) is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License</a>.
## Credits {-}
<div>Icons made from <a href="http://www.onlinewebfonts.com/icon">Icon Fonts</a> are licensed by CC BY 3.0</div>
## Acknowledgements {- #acknowledgements}
TAD has been reviewed by and suggestions and changes incorporated based on the feedback through [the TAD Hypothes.is group](https://hypothes.is/groups/Q3o92MJg/tad) by the following people: Andrea Bowling, Caroline Brady, Declan Golsen, Asya Little, Claudia Valdez, ...
## Build information {-}
<!-- This may be a unique textbook compared to others you have seen. It has been created using R itself --specifically using an R package called `bookdown` [@R-bookdown]. This R package makes it possible to write, execute ('run'), and display code and results within the text. The website for this textbook is hosted with [GitHub Pages](https://pages.github.com/) and the complete source is available on [GitHub](https://github.com/lin380). -->
<!-- and automatically updated after every commit by [Travis-CI](https://travis-ci.org). -->
This version of the textbook was built with `r sessioninfo::platform_info()[[1]]` on `r sessioninfo::os_name()` with the following packages:
```{r, echo = FALSE, results="asis", eval=TRUE}
pkgs <- sessioninfo::package_info(dependencies = FALSE)
df <- tibble(
package = pkgs$package,
version = pkgs$ondiskversion,
source = gsub("@", "\\\\@", pkgs$source)
)
knitr::kable(df, format = "markdown")
```
```{r include=FALSE}
# automatically create a bib database for R packages
knitr::write_bib(c(
.packages(), 'bookdown', 'knitr', 'rmarkdown', 'languageR', 'quanteda.corpora', 'rvest', 'rsyntax', 'rtweet', 'quanteda', 'quanteda.textstats', 'quanteda.textmodels'
), 'packages.bib')
```