denkCF commited on
Commit
6510302
·
verified ·
1 Parent(s): 8f51bfe

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -3
README.md CHANGED
@@ -1,3 +1,35 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Codeforces Users Submissions Dataset (End of 2024)
2
+
3
+ This project provides the usersCodeforcesSubmissionsEnd2024.csv file, containing anonymized submission data of approximately 15,000 active Codeforces users. The dataset includes all submissions from the inception of Codeforces up to the end of November 2024. It is designed to support AI and data-driven projects. (All data was collected using the open Codeforces API)
4
+ ## Dataset Overview
5
+
6
+ The file contains **17,607,999 rows** with the following columns:
7
+
8
+ - **`handle`**: An anonymized and shuffled user nickname (e.g., `user{i}`).
9
+ - **`rating_at_submission`**: User's rating at the time of submission.
10
+ - **`problem_rating`**: Problem difficulty rating.
11
+ - **`id_of_submission_task`**: Unique problem identifier on Codeforces.
12
+ - **`verdict`**: Result of the submission (e.g., `OK`, `WRONG_ANSWER`).
13
+ - **`time`**: Time of submission (in seconds since the Unix epoch).
14
+
15
+ ## Purpose of the Dataset
16
+
17
+ 1. **AI Development**: This dataset can be used to create intelligent systems to enhance user learning on Codeforces.
18
+ _(Example: The author of this dataset is currently working on the project "Codeforces User Analysis System for Generating Individual Training Recommendations," which aims to recommend tasks to users based on their weaknesses.)_
19
+
20
+ 2. **Time Saving**: Collecting such data manually can be time-consuming (it took ≈7 hours for this dataset). By providing it in a ready-to-use format, we aim to save your time and effort.
21
+
22
+ 3. **Reduce Server Load**: This dataset minimizes repetitive data scraping, thereby reducing the load on Codeforces servers.
23
+
24
+ ## License
25
+
26
+ This dataset is shared under the [CC BY 4.0 License](https://creativecommons.org/licenses/by/4.0/). You are free to use it for your projects with proper attribution.
27
+
28
+ ## How to Use
29
+
30
+ 1. Load the dataset using your favorite library (e.g., `pandas` in Python):
31
+ ```python
32
+ import pandas as pd
33
+ df = pd.read_csv("usersCodeforcesSubmissionsEnd2024.csv")
34
+
35
+ # Good luck with your projects :)