A test dataset containing 2001-17 job change and other data for the 22 specialized traded clusters analyzed in the CMAP Traded Clusters report.

cluster_jobchange

Format

A tibble. 22 rows and 5 variables:

code

Integer. code of cluster

name

Char. textual description/cluster title

category

Factor. Either "goods-producing" or "services"

assessment

Factor. "Leading", "Mixed", or "Trailing"

jobchange

Integer. Total change in employment in the cluster between 2001-17

Source

CMAP traded clusters report

Examples

# A bar chart
ggplot(cluster_jobchange, aes(x = reorder(name, jobchange), y = jobchange, fill = category)) +
  geom_col() +
  coord_flip()