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로 빅데이터 시각화하기