anna-sarvam commited on
Commit
8bc9d4c
·
verified ·
1 Parent(s): be33e29

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +102 -45
README.md CHANGED
@@ -1,45 +1,102 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: task_id
5
- dtype: string
6
- - name: task_name
7
- dtype: string
8
- - name: global_usage_count
9
- dtype: float64
10
- - name: global_usage_pct
11
- dtype: float64
12
- - name: automation_pct
13
- dtype: float64
14
- - name: augmentation_pct
15
- dtype: float64
16
- - name: dominant_collaboration_pattern
17
- dtype: string
18
- - name: dominant_pattern_pct
19
- dtype: float64
20
- - name: directive_pct
21
- dtype: float64
22
- - name: task_iteration_pct
23
- dtype: float64
24
- - name: learning_pct
25
- dtype: float64
26
- - name: feedback_loop_pct
27
- dtype: float64
28
- - name: validation_pct
29
- dtype: float64
30
- - name: india_usage_count
31
- dtype: float64
32
- - name: india_usage_pct
33
- dtype: float64
34
- splits:
35
- - name: train
36
- num_bytes: 607791
37
- num_examples: 2616
38
- download_size: 249691
39
- dataset_size: 607791
40
- configs:
41
- - config_name: default
42
- data_files:
43
- - split: train
44
- path: data/train-*
45
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Anthropic Economic Index - Structured Task Dataset
2
+
3
+ ## Dataset Description
4
+
5
+ This dataset provides a structured, flattened view of the Anthropic Economic Index data, focusing on real-world AI task usage patterns, collaboration behaviors, and India-specific insights.
6
+
7
+ **Source**: [Anthropic/EconomicIndex](https://huggingface.co/datasets/Anthropic/EconomicIndex)
8
+
9
+ **Processing**: This dataset was extracted and structured from the raw Economic Index data using custom analysis scripts to provide:
10
+ - Task-level usage metrics (global and India-specific)
11
+ - Collaboration pattern distributions
12
+ - Automation/augmentation percentages
13
+ - Easy-to-use tabular format
14
+
15
+ ## Dataset Statistics
16
+
17
+ - **Total Tasks**: 2,616
18
+ - **Total Columns**: 15
19
+ - **Tasks with India Data**: 47
20
+ - **Total India Usage**: 40,693
21
+
22
+ ## Column Descriptions
23
+
24
+ ### Task Identification
25
+ - `task_id`: Unique identifier for each task
26
+ - `task_name`: Description of the task (from O*NET occupational tasks)
27
+
28
+ ### Usage Metrics (Global)
29
+ - `global_usage_count`: Number of times this task was used globally
30
+ - `global_usage_pct`: Percentage of total global usage this task represents
31
+
32
+ ### Automation & Augmentation
33
+ - `automation_pct`: Percentage of usage involving full automation
34
+ - `augmentation_pct`: Percentage of usage involving human-AI augmentation
35
+
36
+ ### Collaboration Patterns (Global)
37
+ These show how users collaborate with Claude when performing this specific task:
38
+
39
+ - `dominant_collaboration_pattern`: The most common collaboration pattern for this task
40
+ - `dominant_pattern_pct`: Percentage of the dominant pattern
41
+ - `directive_pct`: % of usage with directive pattern (user gives clear instructions)
42
+ - `task_iteration_pct`: % of usage with iterative refinement pattern
43
+ - `learning_pct`: % of usage where user is learning/exploring
44
+ - `feedback_loop_pct`: % of usage with back-and-forth feedback
45
+ - `validation_pct`: % of usage for validation/checking work
46
+
47
+ ### India-Specific Metrics
48
+ - `india_usage_count`: Number of times this task was used in India
49
+ - `india_usage_pct`: Percentage of total India usage this task represents
50
+
51
+ ## Use Cases
52
+
53
+ This dataset is ideal for:
54
+
55
+ 1. **Understanding AI Task Patterns**: Analyze which real-world tasks are commonly performed with AI assistance
56
+ 2. **Persona-Task Matching**: Match AI usage patterns to user personas for scenario generation
57
+ 3. **Collaboration Research**: Study how different tasks require different human-AI collaboration patterns
58
+ 4. **Regional Analysis**: Compare global vs India-specific task usage patterns
59
+ 5. **Automation Research**: Understand which tasks are being automated vs augmented
60
+
61
+ ## Top Tasks by India Usage
62
+
63
+ The most popular tasks in India include:
64
+ 1. Writing/modifying programs to meet customer requirements
65
+ 2. [Analysis of your data will reveal more patterns]
66
+
67
+ ## Citation
68
+
69
+ If you use this dataset, please cite both this processed version and the original Economic Index:
70
+
71
+ ```
72
+ @misc{economic_index_structured,
73
+ title={Anthropic Economic Index - Structured Task Dataset},
74
+ author={Sarvam AI},
75
+ year={2025},
76
+ howpublished={\url{https://huggingface.co/datasets/anna-sarvam/economic_index_structured}}
77
+ }
78
+
79
+ @misc{anthropic_economic_index,
80
+ title={Anthropic Economic Index},
81
+ author={Anthropic},
82
+ year={2025},
83
+ howpublished={\url{https://huggingface.co/datasets/Anthropic/EconomicIndex}}
84
+ }
85
+ ```
86
+
87
+ ## Data Processing
88
+
89
+ This dataset was created using a multi-step pipeline:
90
+ 1. Downloaded raw Economic Index CSV files from Anthropic's repository
91
+ 2. Extracted task information, collaboration patterns, and intersection data
92
+ 3. Calculated India-specific metrics from geo-filtered data
93
+ 4. Flattened into a single tabular format for easy analysis
94
+ 5. Removed redundant columns and kept only valuable metrics
95
+
96
+ ## License
97
+
98
+ This dataset follows the same license as the original Anthropic Economic Index dataset.
99
+
100
+ ## Contact
101
+
102
+ For questions or issues, please open an issue in the source repository.