Visualizing Big Data with Trelliscope in R
Ryan Hafen
Author, TrelliscopeJS
Introduce more variables into the summary computations
ggplot(tx, aes(tip_amount, total_amount)) +
geom_hex(bins = 75) + scale_x_log10() + scale_y_log10() + geom_abline(slope = 1, intercept = 0)
ggplot(daily_count, aes(pickup_date, n_rides)) +
geom_point() +
facet_wrap(~ pickup_dow)
ggplot(daily_count, aes(pickup_date, n_rides)) +
geom_point() +
facet_grid(~ pickup_dow) +
geom_smooth(method = "rlm", se = FALSE)
Visualizing Big Data with Trelliscope in R