Visualizing Big Data with Trelliscope in R
Ryan Hafen
Author, TrelliscopeJS
Question: Do cash payments have tips?
Rides of the same nature should have similar fare and tip amounts.
ggplot(tx_pop, aes(trip_duration, total_amount)) +
geom_point(alpha = 0.2)
ggplot(tx_pop, aes(sample = total_amount, color = payment_type)) +
geom_qq(distribution = stats::qunif) +
ylim(c(3, 20))
Visualizing Big Data with Trelliscope in R