codealchemist01 commited on
Commit
0798410
ยท
verified ยท
1 Parent(s): 70b1e58

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +103 -0
README.md ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ task_categories:
4
+ - text-classification
5
+ - text-generation
6
+ language:
7
+ - en
8
+ tags:
9
+ - books
10
+ - goodreads
11
+ - web-scraping
12
+ - recommendation-systems
13
+ - literature
14
+ size_categories:
15
+ - 1K<n<10K
16
+ ---
17
+
18
+ # Goodreads Books Dataset
19
+
20
+ ## Dataset Description
21
+
22
+ A comprehensive dataset of books scraped from Goodreads, including ratings, authors, titles, and various book characteristics.
23
+
24
+ This dataset contains **3045 books** with **20 features** each, scraped from Goodreads. It's perfect for:
25
+
26
+ - ๐Ÿ“š Book recommendation systems
27
+ - ๐Ÿ“Š Literary data analysis
28
+ - ๐Ÿค– Machine learning projects
29
+ - ๐Ÿ“ˆ Rating prediction models
30
+ - ๐Ÿ” Book discovery algorithms
31
+
32
+ ## Dataset Structure
33
+
34
+ ### Features
35
+
36
+ | Column | Type | Description |
37
+ |--------|------|-------------|
38
+ | rank | int64 | Book rank |
39
+ | percentile_rank | float64 | Book percentile rank |
40
+ | book_id | int64 | Book book id |
41
+ | title | object | Book title |
42
+ | author | object | Book author |
43
+ | rating | float64 | Book rating |
44
+ | rating_category | object | Book rating category |
45
+ | rating_tier | object | Book rating tier |
46
+ | is_high_rated | bool | Book is high rated |
47
+ | title_length | int64 | Book title length |
48
+ | title_complexity | object | Book title complexity |
49
+ | word_count | int64 | Book word count |
50
+ | author_count | int64 | Book author count |
51
+ | author_name_length | int64 | Book author name length |
52
+ | has_series_info | bool | Book has series info |
53
+ | series_number | float64 | Book series number |
54
+ | title_type | object | Book title type |
55
+ | has_subtitle | bool | Book has subtitle |
56
+ | has_middle_name | bool | Book has middle name |
57
+ | estimated_popularity | object | Book estimated popularity |
58
+
59
+
60
+ ### Statistics
61
+
62
+ - **Total Records**: 3,045
63
+ - **File Size**: 0.43 MB
64
+ - **Data Quality**: 97.0% complete
65
+ - **Average Rating**: 4.06
66
+ - **Rating Range**: 0.00 - 4.93
67
+
68
+ ## Usage
69
+
70
+ ```python
71
+ from datasets import load_dataset
72
+
73
+ # Load the dataset
74
+ dataset = load_dataset("codealchemist01/goodreads-books")
75
+
76
+ # Access the data
77
+ df = dataset['train'].to_pandas()
78
+ print(df.head())
79
+ ```
80
+
81
+ ## Data Collection
82
+
83
+ The data was collected through web scraping of Goodreads.com using ethical scraping practices:
84
+ - Respectful rate limiting
85
+ - Robots.txt compliance
86
+ - No personal user data collected
87
+
88
+ ## Citation
89
+
90
+ If you use this dataset in your research, please cite:
91
+
92
+ ```
93
+ @dataset{goodreads_books_2025,
94
+ title={Goodreads Books Dataset},
95
+ author={Kutay Ahin},
96
+ year={2025},
97
+ url={https://huggingface.co/datasets/codealchemist01/goodreads-books}
98
+ }
99
+ ```
100
+
101
+ ## License
102
+
103
+ This dataset is released under the CC0 1.0 Universal License.