bridges: Pittsburgh bridges

Description Usage Format References Examples

Description

Data on Pittsburgh bridges, collected by Yoram Reich and Steven J. Fenves, Carnegie Mellon University.

Usage

1

Format

An object of class tbl_df (inherits from tbl, data.frame) with 108 rows and 13 columns.

References

Provided by the UCI Machine Learning Repository at: https://archive.ics.uci.edu/ml/datasets/Pittsburgh+Bridges

Examples

1
2
3
4
5
6
library(tidyverse)

select(bridges, MATERIAL, ERECTED) %>%
  table() %>% 
  reshape2::melt() %>% 
  ggplot(aes(ERECTED, value, fill = MATERIAL)) + geom_col(position = "stack")

clauswilke/dviz.supp documentation built on Aug. 25, 2020, 2:12 a.m.