Visualizando Big Data com Trelliscope em R
Ryan Hafen
Author, TrelliscopeJS



Pergunta: Pagamentos em dinheiro têm gorjeta?
Corridas do mesmo tipo devem ter valores de tarifa e gorjeta semelhantes.

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

Visualizando Big Data com Trelliscope em R