eric27n commited on
Commit
d2e9185
·
verified ·
1 Parent(s): 6cca66b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -1
README.md CHANGED
@@ -9,4 +9,39 @@ tags:
9
  pretty_name: New York Times Connections
10
  size_categories:
11
  - 1K<n<10K
12
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  pretty_name: New York Times Connections
10
  size_categories:
11
  - 1K<n<10K
12
+ ---
13
+ ## Context
14
+ Connections is a word puzzle developed and published by The New York Times, first released on 12 June 2023. It has since become the second most-played game published by the New York Times, behind only Wordle. The player's goal is to identify four distinct categories or themes among sixteen words, with each group containing four words that fit the theme. Words can be connected by various relationships, such as synonyms, shared characteristics, or associations. The connections increase in difficulty (as indicated by the connection's color: yellow (easiest), green, blue, purple (hardest)) as the connections become more abstract or deceptive, with a maximum of four incorrect guesses allowed before the game is over. It tests the player's ability to spot patterns and make associations across different word groupings.
15
+
16
+ ## Content
17
+ This dataset is a collection of NYTimes Connections games and information. Information is displayed by words that appear in each Connections game. Each row contains data on the game ID, date of the game, the word itself, the name of the group it's a part of, the level difficulty of the group, and the original starting position (row and column) of the word.
18
+
19
+ Refer to the sample NYTimes Connections game below:
20
+ ![Screenshot of a sample Connections game from 18 August 2023](https://parade.com/.image/t_share/MjAwMTU3OTU2NjMxNzAwODU2/connections-nyt-friday-august-18-2023.png)
21
+
22
+ You can view the entries for this game in the dataset in indeces 1,072-1,087, or where Game ID is equal to 68. The columns and their properties in the dataset include:
23
+ -**Game ID**: The ID of the day's game, as listed by the NYTimes. For the game above, the Game ID is 68.
24
+ -**Puzzle Date**: The date of the puzzle, as listed in YYYY-MM-DD. For the game above, the Puzzle Date is 2023-08-18.
25
+ -**Word**: Each word from each day's game is listed as a row. Every word is added from the game's starting board, left to right, top to bottom. For example, in the game above, you can find the word 'PINT' in index 1,072, 'REAL' in index 1,073, 'SPONGE' in index 1,076, etc.
26
+ -**Group Name**: The theme that connects a word to others in a group. In the game above, the answers are: "Cup, Gallon, Pint, Quart" in yellow (easiest) for "Units of Volume"; "Awful, Quite, Super, Very" in green (moderately easy) for "Extremely"; "Rand, Real, Sterling, Won" in blue (moderately hard) for "World Currencies; and "Carrot, Coffee, Pound, Sponge" in purple (hardest) for "\_\_\_ Cake". So the group names for this game would be 'UNITS OF VOLUME', 'EXTREMELY', 'WORLD CURRENCIES', and '\_\_\_ CAKE'.
27
+ -**Group Level**: The difficulty of the group, indicated by an integer (0 being easiest, 3 being the hardest). As an example, in the game above, "World Currencies" is grouped in blue (second hardest, third easiest), meaning its group level would be 2.
28
+ -**Starting Row**: The starting row position for a given word, expressed as an integer 1-4. Rows are numbered from top to bottom, so 1 is the topmost row, while 4 is the bottommost row.
29
+ -**Starting Column**: The starting column position for a given word, expressed as an integer 1-4. Columns are numbered from left to right, so 1 is the leftmost row, while 4 is the rightmost row.
30
+
31
+ To put the starting rows and columns together, here is a visual example of the starting rows & columns for the game above, expressed as "WORD: (row, column)":
32
+
33
+ | PINT: (1, 1) | REAL: (1, 2) | CARROT: (1, 3) | AWFUL: (1, 4) |
34
+ | --- | --- | --- | --- |
35
+ | SPONGE: (2, 1) | CUP: (2, 2) | WON: (2, 3) | SUPER: (2, 4) |
36
+ | GALLON: (3, 1) | COFFEE: (3, 2) | VERY: (3, 3) | POUND: (3, 4) |
37
+ | RAND: (4, 1) | QUITE: (4, 2) | QUART: (4, 3) | STERLING: (4, 4) |
38
+
39
+
40
+ ## Acknowledgements
41
+ All game information was collected from the NYTimes archive.
42
+
43
+ ## Inspiration
44
+ Some possible uses for this dataset include:
45
+ - Evaluating Reasoning and Decision Making skills of LLMs/Neural Networks ([recent paper on this topic](https://arxiv.org/abs/2406.11012))
46
+ - Using NLP analysis to detect "red herrings" in Connections
47
+ - Utilizing the work to construct a word association network