https://github.com/echasnovski/taoteprog
Data and analysis of "Tao Te Programming" book
https://github.com/echasnovski/taoteprog
Last synced: 7 months ago
JSON representation
Data and analysis of "Tao Te Programming" book
- Host: GitHub
- URL: https://github.com/echasnovski/taoteprog
- Owner: echasnovski
- License: other
- Created: 2018-02-25T08:43:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-05T20:22:09.000Z (over 7 years ago)
- Last Synced: 2025-01-16T13:20:55.185Z (9 months ago)
- Language: HTML
- Size: 425 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# taoteprogThis is an analysis package for [Tao Te Programming](http://www.burns-stat.com/documents/books/tao-te-programming/) book by Patrick Burns. The main goal is to study "alliance graph" of programming advice. `taoteprog` provides the following data:
- `tot_chapters` - a [tibble](http://tibble.tidyverse.org/) with information about chapters. Has two columns: `chapter` (for chapter number) and `name` (for chapter name).
- `tot_edges` - a `tibble` with information about chapter connections (considered as edges in "alliance graph"). Has three columns: `chapter1` and `chapter2` with chapter number of edge vertices and
`type` with "ally" or "opponent" type.Folder "analysis" contains code for analysis of these data.
## Installation
You can install taoteprog from GitHub with:
```{r gh-installation, eval = FALSE}
# install.packages("devtools")
devtools::install_github("echasnovski/taoteprog")
```