├── .gitignore ├── LICENSE ├── README.md ├── images ├── ccccc.PNG ├── cw_avglength.png ├── cw_avglength_byday.png ├── cw_density_byday.png ├── cw_length_hist.png ├── cw_tf_idf.png ├── cw_tf_idf_2017.png ├── cw_top5_freq.png ├── cw_ttr.png ├── cw_ttr_byday.png ├── least_dense.PNG ├── long_puzzle.PNG ├── most_dense.PNG └── short_puzzle.PNG ├── index.html ├── nytcrossword.Rmd ├── nytcrossword.Rproj ├── nytcrossword.nb.html └── scripts ├── .Rhistory └── 2_crossword_analysis.R /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/README.md -------------------------------------------------------------------------------- /images/ccccc.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/images/ccccc.PNG -------------------------------------------------------------------------------- /images/cw_avglength.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/images/cw_avglength.png -------------------------------------------------------------------------------- /images/cw_avglength_byday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/images/cw_avglength_byday.png -------------------------------------------------------------------------------- /images/cw_density_byday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/images/cw_density_byday.png -------------------------------------------------------------------------------- /images/cw_length_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/images/cw_length_hist.png -------------------------------------------------------------------------------- /images/cw_tf_idf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/images/cw_tf_idf.png -------------------------------------------------------------------------------- /images/cw_tf_idf_2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/images/cw_tf_idf_2017.png -------------------------------------------------------------------------------- /images/cw_top5_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/images/cw_top5_freq.png -------------------------------------------------------------------------------- /images/cw_ttr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/images/cw_ttr.png -------------------------------------------------------------------------------- /images/cw_ttr_byday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/images/cw_ttr_byday.png -------------------------------------------------------------------------------- /images/least_dense.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/images/least_dense.PNG -------------------------------------------------------------------------------- /images/long_puzzle.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/images/long_puzzle.PNG -------------------------------------------------------------------------------- /images/most_dense.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/images/most_dense.PNG -------------------------------------------------------------------------------- /images/short_puzzle.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/images/short_puzzle.PNG -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/index.html -------------------------------------------------------------------------------- /nytcrossword.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/nytcrossword.Rmd -------------------------------------------------------------------------------- /nytcrossword.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/nytcrossword.Rproj -------------------------------------------------------------------------------- /nytcrossword.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/nytcrossword.nb.html -------------------------------------------------------------------------------- /scripts/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/2_crossword_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtanwk/nytcrossword/HEAD/scripts/2_crossword_analysis.R --------------------------------------------------------------------------------