├── .gitattributes ├── .gitignore ├── README-fig ├── questions_per_day-1.png ├── questions_per_week-1.png └── tags_per_year-1.png ├── README.Rmd ├── README.html ├── README.md ├── question_tags.csv.gz ├── questions.csv.gz ├── setup-data.R ├── stacklite.Rproj └── status.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/StackLite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | README-cache 2 | .Rproj.user 3 | -------------------------------------------------------------------------------- /README-fig/questions_per_day-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/StackLite/HEAD/README-fig/questions_per_day-1.png -------------------------------------------------------------------------------- /README-fig/questions_per_week-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/StackLite/HEAD/README-fig/questions_per_week-1.png -------------------------------------------------------------------------------- /README-fig/tags_per_year-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/StackLite/HEAD/README-fig/tags_per_year-1.png -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/StackLite/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/StackLite/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/StackLite/HEAD/README.md -------------------------------------------------------------------------------- /question_tags.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/StackLite/HEAD/question_tags.csv.gz -------------------------------------------------------------------------------- /questions.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/StackLite/HEAD/questions.csv.gz -------------------------------------------------------------------------------- /setup-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/StackLite/HEAD/setup-data.R -------------------------------------------------------------------------------- /stacklite.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/StackLite/HEAD/stacklite.Rproj -------------------------------------------------------------------------------- /status.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/StackLite/HEAD/status.yml --------------------------------------------------------------------------------