Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kosukeimai/qss-swirl
Swirl Lessons for ``Quantitative Social Science: An Introduction''
https://github.com/kosukeimai/qss-swirl
Last synced: 15 days ago
JSON representation
Swirl Lessons for ``Quantitative Social Science: An Introduction''
- Host: GitHub
- URL: https://github.com/kosukeimai/qss-swirl
- Owner: kosukeimai
- License: gpl-2.0
- Created: 2015-11-21T13:18:26.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-09-09T23:22:34.000Z (about 3 years ago)
- Last Synced: 2024-08-02T06:03:32.251Z (3 months ago)
- Language: R
- Homepage:
- Size: 1 MB
- Stars: 76
- Watchers: 17
- Forks: 42
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# qss-swirl [![Build Status](https://travis-ci.org/kosukeimai/qss-swirl.svg?branch=master)](https://travis-ci.org/kosukeimai/qss-swirl)
*News*: See [Interactive Tutorials for QSS by Matt Blackwell](https://github.com/mattblackwell/qsslearnr) which builds on `qss-swirl` but significantly improves it.
Swirl Lessons for the book, ``Quantitative Social Science: An Introduction'' (QSS), published by Princeton University Press in 2017. See also the main repo, [qss](../../../qss), for other supplementary materials.
I welcome your contributions. Please improve these questions and add some new ones so that others can use them!
If you are an instructor, you may also be interested in [Socratic Swirl](https://github.com/dimagor/socraticswirl), which can be used to monitor and analyze your students' progress in these swirl lessons with an easy-to-use [dashboard](https://github.com/dimagor/socraticswirlInstructor).
* Install the `swirl` package:
```
install.packages("swirl")
```* Install the `qss-swirl` lessons:
```
library(swirl) # load the swirl package
install_course_github("kosukeimai", "qss-swirl")
```* Start a `qss-swirl` lesson (after loading the `swirl` package):
```
swirl()
```* Uninstall the `qss-swirl` lessons (after loading the `swirl` package):
```
uninstall_course("qss-swirl")
```* Update the `qss-swirl` lessons (after loading the `swirl` package):
```
uninstall_course("qss-swirl") # uninstall the course
install_course_github("kosukeimai", "qss-swirl") # reinstall the course
```