स्थानिक रूप से संबंधित वितरणों की तुलना

R में Visualization की Best Practices

Nick Strayer

Instructor

'spatially connected axes' क्या हैं?

  • कक्षाओं में एक अंतर्निहित क्रम होता है.
  • जैसे, साल के महीने: Jan < Feb < Mar < ...

 

R में Visualization की Best Practices

रिजलाइन प्लॉट

library(ggridges) # Gives us geom_density_ridges()
ggplot(md_speeding, aes(x = speed_over, y = month)) + 
  geom_density_ridges(bandwidth = 2) +
  xlim(1, 35)

R में Visualization की Best Practices

रिजलाइन के फायदे

R में Visualization की Best Practices

रिजलाइन की सीमाएँ

R में Visualization की Best Practices

R में Visualization की Best Practices

चलें, कुछ रिजलाइन्स बनाएँ!

R में Visualization की Best Practices

Preparing Video For Download...