Datasets:

Modalities:
Tabular
Text
Formats:
parquet
Size:
< 1K
Libraries:
Datasets
pandas
File size: 3,605 Bytes
c7b8e66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b80d6bb
c7b8e66
b80d6bb
 
c7b8e66
 
 
 
 
 
7ca010e
 
 
 
b5d1f69
7ca010e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6e8e86a
 
7ca010e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
---
dataset_info:
  features:
  - name: feuilleton_id
    dtype: string
  - name: feuilleton_id_series
    dtype: string
  - name: text
    dtype: string
  - name: label
    dtype: string
  - name: subcategory
    dtype: string
  - name: clean
    dtype: bool
  - name: wordcount/part
    dtype: int64
  - name: wordcount/whole
    dtype: int64
  - name: date
    dtype: string
  - name: author
    dtype: string
  - name: original_language
    dtype: string
  - name: cliffhanger
    dtype: float64
  - name: feuilleton_name
    dtype: string
  - name: complete
    dtype: string
  splits:
  - name: train
    num_bytes: 585442
    num_examples: 50
  download_size: 367205
  dataset_size: 585442
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# Press&Plot: Curated Danish 19th-Century Stories & Serial Fiction (v1.0)

**Short description:**  
A curated collection of 29 Danish newspaper stories (1816–1832), including single-part and multi-part fiction, manually inspected, cleaned, and categorized for research use. The dataset is a growing resource.

---

# Dowloading the dataset
```py
# using python
from datasets import load_dataset

ds = load_dataset("chcaa/press-and-plot", split="train")

# if you want it as a pandas DataFrame:
df = ds.to_pandas()
```
---

## Dataset Details

This dataset focuses on ephemeral fiction published in Danish newspapers, capturing forms often overlooked in traditional corpora. Each story is assigned a unique ID and a general category: short story (general fiction), biography, travelogue, & lovestory.  

- **Curated by:** [GoldenMatrix](https://chc.au.dk/research/golden-matrix) at Center for Humanities Computing (CHC), Aarhus University
- **Processed by:** [ENO](https://hislab.quarto.pub), Aalborg University
- **Uploaded by:** [Pascale Feldkamp](https://huggingface.co/PascaleF)
- **Language(s):** Danish (dan), from the 18th&19th century
- **License:** Danish Newspapers fall under Public Domain (CC0)
- 
---

## Data Summary

| Component   | Count | Notes                              |
|------------|-------|------------------------------------|
| Stories    | 29    | Single-part and multi-part narratives |
| Articles   | 50    | Installments grouped by feuilleton_id_series |
| Categories | 6     | Biography (bio), travellogue, short story & lovestory    |

---
## Data structure

A sample in this dataset is structured as follows:

```py
{
  'feuilleton_id': 'letter-to-france_a', # unique id per installment
  'feuilleton_id_series': 'letter-to-france', # series/story id
  'text': 'Udtog af et Brev fra Generalinde Bertrand...' # full text per installment
  'label': 'fiction' # label assigned in task differentiating fiction from nonfiction in newspapers
  'subcategory': 'short story' # one of 4 subcategories
  'clean': '1' # whether or not manual cleaning has been performed
  'wordcount/part': '1017', # wordcount for part
  'wordcount/whole': '2157', # wordcount for full series
  'date': '1816-02-02',
  'author': 'A. v. Kotebue',
  'original_language': 'NaN', # from where this text was translated, if known
  'cliffhanger': '0' # whether part contains a cliffhanger
  'feuilleton_name': 'Blik i Fremtiden: Brev fra Generalinde Bertrand' # original title
  'complete': 'TRUE' # whether a part is missing
}
```
---

## Methodology

- Selected from high-confidence predictions of a fiction classifier.  
- Manually inspected and grouped across installments.  
- Cleaned for spelling and formatting.  
For more detail, see paper (forthcoming)
---

## Version

v1.0

---

## Citation

Forthcoming