JoaoSchneider commited on
Commit
a70fcb9
1 Parent(s): ce757f8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -14
README.md CHANGED
@@ -54,30 +54,53 @@ tags:
54
  - Book reviews
55
  ---
56
 
57
- Listing of >7k books I've read over the last few years. If you don't believe me, here's a [video](https://www.youtube.com/watch?v=zoVRKlgn9jk) of my occasional reading activity (haters gonna say it's fake).
58
 
59
  ----
60
 
 
 
 
 
61
  The data set contains information of books that have been reviewed at least once.
62
  The reviews are received from reputable German print media such as the *Frankfurter Allgemeine Zeitung* (FAZ), *Süddeutsche Zeitung* (SZ), *Die Zeit*, etc. and other serious broadcasters such as *Deutschlandfunk Kultur*.
63
  Those reviews are collected by the culture magazine [*Perlentaucher*](https://www.perlentaucher.de) and labeled as *read a lot* when there are at least three reviews of a book.
64
 
65
  [*Perlentaucher*](https://www.perlentaucher.de) publishes on a daily basis since the year 2000, except for German Sun- and holidays. On average, there are about *M*=12 (*SD*=5) bookentries per day.
66
- Data was harvested for all entries starting from March 15, 2000 to May 16, 2024. In total, the data set consists of 89,766 rows for 7,349 days and 14 columns.
 
 
67
 
68
- **Variables overview:**
69
-
70
- - `date`: the pubication day of book review (as Pandas `timestamp[ns]`, `YYYY-MM-DD`)
71
- - `relevant`: boolean, whether the book is relevant (i.e. marked as *read a lot*, dtype: `bool`)
72
  - `author`: the author of the book (dtype: `string`)
73
  - `title`: the title of the book (dtype: `string`)
74
- - `ISBN`: the International Standard Book Number, ISBN-13 (dtype: `int64`)
75
- - `type`: the type of the book, e.g. soft- or hardcover (German labelling!) or if it is not a book, the type of medium (dtype: `string`)
76
- - `pages`: the number of book pages; `NaN` for other types such as audio files (dtype: `int64`)
77
- - `price`: the price of the book in Euros (dtype: `float64`)
78
  - `content`: the dust cover blurb (dtype: `string`)
79
- - `notes`: the number of review notes as an indicator wheter the the book is relevant; lumped to zero for *n*<3 notes (dtype: `int64`)
80
  - `publisher`: the publisher of the book (dtype: `string`)
81
- - `pub_place`: the place (city) where the books has been published (dtype: `string`)
82
- - `pub_year`: the year the books has been published (dtype: `int64`)
83
- - `is_novel`: boolean, whether the book is a novel (dtype: `bool`)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  - Book reviews
55
  ---
56
 
57
+ Listing of the >7k books I've read recently. Some claim it's actually data scraped from website [*Perlentaucher*](https://www.perlentaucher.de). Which you believe is up to you, but here's a [video](https://www.youtube.com/watch?v=koPSzQWzwno) of my occasional reading activity (haters gonna say it's fake).
58
 
59
  ----
60
 
61
+ # Dataset card
62
+
63
+ ## Dataset Description
64
+
65
  The data set contains information of books that have been reviewed at least once.
66
  The reviews are received from reputable German print media such as the *Frankfurter Allgemeine Zeitung* (FAZ), *Süddeutsche Zeitung* (SZ), *Die Zeit*, etc. and other serious broadcasters such as *Deutschlandfunk Kultur*.
67
  Those reviews are collected by the culture magazine [*Perlentaucher*](https://www.perlentaucher.de) and labeled as *read a lot* when there are at least three reviews of a book.
68
 
69
  [*Perlentaucher*](https://www.perlentaucher.de) publishes on a daily basis since the year 2000, except for German Sun- and holidays. On average, there are about *M*=12 (*SD*=5) bookentries per day.
70
+ Data was harvested for all entries starting from March 15, 2000 to May 18, 2024. In total, the data set consists of 89,790 rows for 7,351 days and 15 columns.
71
+
72
+ ## Variables overview
73
 
74
+ - `date`: the publication day of book review (dtype: `date32`, `YYYY-MM-DD`)
 
 
 
75
  - `author`: the author of the book (dtype: `string`)
76
  - `title`: the title of the book (dtype: `string`)
77
+ - `ISBN`: the International Standard Book Number, ISBN-13 in normalized form (i.e. hyphens removed); correctness has been tested via check digit; missing/incorrect numbers have been corrected manually (dtype: `string`)
78
+ - `price`: the price of the book in euros (`decimal128(6, 2)`, i.e. `scale = 2` for cents)
79
+ - `n_pages`: the number of book pages; nan for other types such as audio files (dtype: `uint16`)
80
+ - `n_reviews`: the number of review notes as an indicator whether the book is relevant; lumped to 1 for *n*<3 notes (dtype: `uint8`)
81
  - `content`: the dust cover blurb (dtype: `string`)
 
82
  - `publisher`: the publisher of the book (dtype: `string`)
83
+ - `pub_place`: the place (city) where the books have been published; incorrect/inconsistent spellings have been corrected manually (dtype: `string`)
84
+ - `pub_year`: the year the books has been published (dtype: `uint16`)
85
+ - `media_type`: the type of media, i.e. *audio*, *print*, *videofilm* or unknown (dtype: `string`)
86
+ - `media_spec`: a specification of the media type; for books its binding like soft- or hardcover (dtype: `string`)
87
+ - `is_relevant`: boolean, whether the book is relevant (i.e. marked as *read a lot*, dtype: `bool`)
88
+ - `is_novel`: boolean, whether the book is a novel according to its title (dtype: `bool`)
89
+
90
+
91
+ ## Citation Information
92
+
93
+ ```
94
+
95
+ @misc {schneider2024pearldive,
96
+ author = { Schneider, Jo\~{a}o A G },
97
+ title = { Pearl Diver },
98
+ year = { 2024 },
99
+ month = { May },
100
+ url = { https://huggingface.co/datasets/JoaoSchneider/PearlDiver },
101
+ doi = { 10.57967/hf/2245 },
102
+ publisher = { Hugging Face },
103
+ note = { Revision 786df49 }
104
+ }
105
+
106
+ ```