-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathtimeseries.js
52 lines (45 loc) · 1.62 KB
/
timeseries.js
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
const fs = require('fs');
const path = require('path');
const csv = require('fast-csv');
const data = {}
let years = {}
let total = {}
let meta = {}
let candidates = {}
let changers = { counter: 0 }
fs.createReadStream(path.resolve(__dirname, '..', 'raw-data', '1976-2020-president.csv'))
.pipe(csv.parse({ headers: true }))
.on('error', error => console.error(error))
.on('data', row => {
if (changers.counter == 0) {
changers.state = row.state_po
changers.year = row.year
}
changers.counter = changers.counter + 1
if (changers.year != row.year) {
years[changers.year] = { total, meta, candidates }
total = {}
meta = {}
candidates = {}
changers.year = row.year
}
if (changers.state != row.state_po) {
years[changers.year] = { total, meta, candidates }
data[changers.state] = Object.assign({}, data[changers.state])
data[changers.state].years = Object.assign(years, data[changers.state].years)
years = {}
total = {}
meta = {}
candidates = {}
changers.state = row.state_po
}
total[(row.party_simplified || 'others').toLowerCase()] = row.candidatevotes
meta['total'] = row.totalvotes
candidates[(row.party_simplified || 'others').toLowerCase()] = row.candidate
}
)
.on('end', rowCount => {
console.log(JSON.stringify(data, null, 4))
fs.writeFileSync('timeseries.json', JSON.stringify(data, null, 4))
console.log(`Parsed ${rowCount} rows`)
});