BrightData commited on
Commit
7ed44ff
1 Parent(s): fd64f97

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +94 -5
README.md CHANGED
@@ -1,5 +1,94 @@
1
- ---
2
- license: other
3
- license_name: bright-data-master-service-agreement
4
- license_link: https://brightdata.com/license
5
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: bright-data-master-service-agreement
4
+ license_link: https://brightdata.com/license
5
+ ---
6
+ ![Bright Data Logo](https://brightdata.com/wp-content/uploads/2024/06/Bright-Data-logo-removebg-preview.png)
7
+
8
+ # Dataset Card for "BrightData/Goodreads-Books"
9
+
10
+ ## Dataset Summary
11
+
12
+ Explore a collection of millions of books with the Goodreads dataset, comprising over 6.3M structured records and 14 data fields.
13
+
14
+ Continuously updated and verified for accuracy, this dataset provides invaluable insights for researchers, analysts and book enthusiasts alike.
15
+
16
+ Each entry includes all major data points such as including URLs, book IDs, titles, authors, star ratings, number of ratings, reviews, summaries, genres, publication dates, author details, community reviews and prices.
17
+
18
+ Please refer to full Data Dictionary below for full list of data points...
19
+
20
+ ## Data Dictionary
21
+
22
+ | Column name | Description | Data type |
23
+ |---------------------|---------------------------------|-----------|
24
+ | url | URL of the book | Text |
25
+ | id | Book id on the website | Text |
26
+ | name | Name of the book | Text |
27
+ | author | Book author | Array |
28
+ | star_rating | Star rating of the book 1-5 | Number |
29
+ | num_ratings | Number of people who left a rating | Number |
30
+ | num_reviews | Number of reviews on the book | Text |
31
+ | summary | Book summary | Text |
32
+ | genres | Book genre | Array |
33
+ | first_published | First published date | Text |
34
+ | about_author | About the author | Object |
35
+ | *> name* | Author name | Text |
36
+ | *> num_books* | Number of books by the author | Number |
37
+ | *> num_followers* | About the author | Text |
38
+ | community_reviews | Community reviews breakdown | Object |
39
+ | *> 5_stars* | 5 stars | Object |
40
+ | *>> reviews_num* | Number of reviews | Number |
41
+ | *>> reviews_percentage* | Percentage of reviews | Number |
42
+ | *> 4_stars* | 4 stars | Object |
43
+ | *>> reviews_num* | Number of reviews | Number |
44
+ | *>> reviews_percentage* | Percentage of reviews | Number |
45
+ | *> 3_stars* | 3 stars | Object |
46
+ | *>> reviews_num* | Number of reviews | Number |
47
+ | *>> reviews_percentage* | Percentage of reviews | Number |
48
+ | *> 2_stars* | 2 stars | Object |
49
+ | *>> reviews_num* | Number of reviews | Number |
50
+ | *>> reviews_percentage* | Percentage of reviews | Number |
51
+ | *> 1_stars* | 1 stars | Object |
52
+ | *>> reviews_num* | Number of reviews | Number |
53
+ | *>> reviews_percentage* | Percentage of reviews | Number |
54
+ | kindle_price | The price of the book on kindle | Price |
55
+
56
+ ## Dataset Creation
57
+
58
+ ### Data Collection and Processing
59
+
60
+ The data collection process involved extracting information directly from Goodreads, ensuring comprehensive coverage of the required attributes. Once collected, the data underwent several stages of processing:
61
+
62
+ - Parsing: Extracted raw data was parsed to convert it into a structured format.
63
+ - Cleaning: The cleaning process involved removing any irrelevant or erroneous entries to enhance data quality.
64
+
65
+ ### Validation:
66
+
67
+ To ensure data integrity, a validation process was implemented. Each entry is checked across various attributes, including:
68
+
69
+ - Uniqueness: Each record was checked to ensure it was unique, eliminating any duplicates.
70
+ - Completeness: The dataset was examined to confirm that all necessary fields were populated or filled, with missing data addressed appropriately.
71
+ - Consistency: Cross-validation checks were conducted to ensure consistency across various attributes, including comparison with historical records.
72
+ - Data Types Verification: Ensured that all data types were correctly assigned and consistent with expected formats.
73
+ - Fill Rates and Duplicate Checks: Conducted comprehensive checks to verify fill rates, ensuring no significant gaps in data, and rigorously screened for duplicates.
74
+
75
+ This ensures that the dataset meets the high standards of quality necessary for analysis, research and modeling.
76
+
77
+ To explore additional free and premium datasets, visit our website [brightdata.com](https://www.brightdata.com)
78
+
79
+ ## Example JSON
80
+
81
+ <div style="max-height: 300px; overflow-y: auto; border: 1px solid #ccc; padding: 10px;">
82
+
83
+ ```json
84
+ [
85
+ {
86
+ "timestamp": "2024-05-09",
87
+ "url": "https://www.imdb.com/title/tt1533087/",
88
+ "title": "Soda Springs",
89
+ "popularity": null,
90
+ "genres": [
91
+ "Drama"
92
+ }
93
+ ]
94
+ ```