Published
Edited
Jul 15, 2022
Insert cell
# Decoding Different RUCA Aggregations

https://depts.washington.edu/uwruca/ruca-uses.php
Insert cell
Object.keys(catB).flatMap(function (d) {
return catB[d].map(function (e) {
const secondary_ruca = e;
const rural_description = d;
const rural_code = rural_codes.get(d);

return { secondary_ruca, rural_description, rural_code };
});
})
Insert cell
rural_codes = new Map([
["Urban", 0],
["Large Rural City/Town", 1],
["Small and Isolated Small Rural Town", 2]
])
Insert cell
catB = ({
Urban: [1.0, 1.1, 2.0, 2.1, 3.0, 4.1, 5.1, 7.1, 8.1, 10.1],

"Large Rural City/Town": [4.0, 4.2, 5.0, 5.2, 6.0, 6.1],

"Small and Isolated Small Rural Town": [
7.0,
7.2,
7.3,
7.4,
8.0,
8.2,
8.3,
8.4,
9.0,
9.1,
9.2,
10.0,
10.2,
10.3,
10.4,
10.5,
10.6
]
})
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more