使用 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 可视化大数据