Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -34,8 +34,6 @@ Records have been filtered to include only books tagged as written entirely in o
|
|
| 34 |
| Russian | 564 |
|
| 35 |
| Dutch | 535 |
|
| 36 |
|
| 37 |
-
The resulting metadata file consists of 43,142 entries.
|
| 38 |
-
|
| 39 |
Books per period (respecting original period split in *blbooks_derived*):
|
| 40 |
| Period | Number of books |
|
| 41 |
| :-------- | :---------------- |
|
|
@@ -52,6 +50,8 @@ Books per period (respecting original period split in *blbooks_derived*):
|
|
| 52 |
| 1880_1889 | 7248 |
|
| 53 |
| 1890_1899 | 10101 |
|
| 54 |
|
|
|
|
|
|
|
| 55 |
## Structure
|
| 56 |
The dataset is provided as a tabular file with the following columns:
|
| 57 |
| Column | Description |
|
|
@@ -107,8 +107,6 @@ import pandas as pd
|
|
| 107 |
df = pd.read_csv("metadata_blbooks.csv")
|
| 108 |
df[df["author"] == "Austen, Jane"][["title", "author", "date", "mean_wc_ocr", "book_id", "best_version", "genre"]]
|
| 109 |
```
|
| 110 |
-
|
| 111 |
-
Returns:
|
| 112 |
| record_id | title | author | date | mean_wc_ocr | book_id | best_version | genre |
|
| 113 |
|-----------|------------------------------------|--------------|------|-------------|---------|--------------|---------|
|
| 114 |
| 144506 | Emma : a novel | Austen, Jane | 1870 | 0.830995 | 1195 | 1 | fiction |
|
|
|
|
| 34 |
| Russian | 564 |
|
| 35 |
| Dutch | 535 |
|
| 36 |
|
|
|
|
|
|
|
| 37 |
Books per period (respecting original period split in *blbooks_derived*):
|
| 38 |
| Period | Number of books |
|
| 39 |
| :-------- | :---------------- |
|
|
|
|
| 50 |
| 1880_1889 | 7248 |
|
| 51 |
| 1890_1899 | 10101 |
|
| 52 |
|
| 53 |
+
The resulting metadata file consists of 43,142 entries.
|
| 54 |
+
|
| 55 |
## Structure
|
| 56 |
The dataset is provided as a tabular file with the following columns:
|
| 57 |
| Column | Description |
|
|
|
|
| 107 |
df = pd.read_csv("metadata_blbooks.csv")
|
| 108 |
df[df["author"] == "Austen, Jane"][["title", "author", "date", "mean_wc_ocr", "book_id", "best_version", "genre"]]
|
| 109 |
```
|
|
|
|
|
|
|
| 110 |
| record_id | title | author | date | mean_wc_ocr | book_id | best_version | genre |
|
| 111 |
|-----------|------------------------------------|--------------|------|-------------|---------|--------------|---------|
|
| 112 |
| 144506 | Emma : a novel | Austen, Jane | 1870 | 0.830995 | 1195 | 1 | fiction |
|