使用 R 的 Trelliscope 視覺化巨量資料
Ryan Hafen
Author, TrelliscopeJS



問題: 現金付款會有小費嗎?
性質相同的行程,車資與小費應該相近。

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

使用 R 的 Trelliscope 視覺化巨量資料