mstern commited on
Commit
f43e483
·
verified ·
1 Parent(s): 537feed

upload cluster level dataset

Browse files
release_2025_03_27/cluster_level_data/README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Cluster Level Data
2
+
3
+ This folder contains cluster level data for the second Economic Index release associated with Claude 3.7 Sonnet Data. It contains hierarchical cluster descriptions, as well as associated prevalence metrics for each cluster (% of records, % of users). It also includes mappings to [O*NET Tasks](https://www.onetonline.org/), collaboration pattern ratios, and ratios associated with whether or not Claude Sonnet 3.7's "Thinking" feature was used during the conversation.
4
+
5
+ ## Files in this Directory
6
+
7
+ - **cluster_level_dataset.tsv**: Tab-separated values file containing the cluster data with all fields described in the data dictionary below. This is the primary dataset file for analysis.
8
+
9
+ - **cluster_level_example_analysis.ipynb**: Jupyter notebook demonstrating example analyses you can perform with the cluster level dataset. This notebook includes code for loading the data, basic exploratory analysis, and visualization techniques to help understand the cluster patterns and their relationships to O*NET tasks.
10
+
11
+ ## Data Dictionary
12
+
13
+ | Field | Description |
14
+ |-------|-------------|
15
+ | cluster_name_0 | Name of the level 0 (most granular) cluster |
16
+ | cluster_description_0 | Detailed description of the level 0 cluster |
17
+ | cluster_name_1 | Name of the level 1 (intermediate) cluster |
18
+ | cluster_description_1 | Detailed description of the level 1 cluster |
19
+ | cluster_name_2 | Name of the level 2 (broadest) cluster |
20
+ | cluster_description_2 | Detailed description of the level 2 cluster |
21
+ | percent_records | Percentage of total records that belong to this Level 0 cluster |
22
+ | percent_users | Percentage of total users who have used this Level 0 cluster |
23
+ | onet_task | Description of the associated O*NET task |
24
+ | collaboration:directive_ratio | Ratio of conversations with directive collaboration patterns |
25
+ | collaboration:feedback loop_ratio | Ratio of conversations with feedback loop collaboration patterns |
26
+ | collaboration:learning_ratio | Ratio of conversations with learning collaboration patterns |
27
+ | collaboration:none_ratio | Ratio of conversations with no collaboration patterns |
28
+ | collaboration:task iteration_ratio | Ratio of conversations with task iteration collaboration patterns |
29
+ | collaboration:validation_ratio | Ratio of conversations with validation collaboration patterns |
30
+ | has_thinking_ratio | Ratio of conversations where the "Thinking" feature was used |
31
+
32
+ ## Bucketing Adjustment
33
+
34
+ For percent_records and percent_users fields, we applied a bucketing adjustment to enhance privacy while preserving the overall distribution:
35
+
36
+ 1. Clusters were sorted by their prevalence metrics (percent_records and percent_users).
37
+ 2. 100 buckets were created.
38
+ 3. Clusters were assigned to buckets and the average prevalence within each bucket was calculated.
39
+ 4. The original values were replaced with the bucket averages to reduce precision while maintaining the distribution.
40
+
41
+
42
+
release_2025_03_27/cluster_level_data/cluster_level_dataset.tsv ADDED
The diff for this file is too large to render. See raw diff
 
release_2025_03_27/cluster_level_data/cluster_level_example_analysis.ipynb ADDED
The diff for this file is too large to render. See raw diff