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 के साथ बिग डेटा का विज़ुअलाइज़ेशन