Visualisering av big data med Trelliscope i R
Ryan Hafen
Author, TrelliscopeJS



Fråga: Ger kontantbetalningar dricks?
Resor av samma typ bör ha liknande taxa- och dricksbelopp.

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))

Visualisering av big data med Trelliscope i R