Interactive Data Visualization with plotly in R
Adam Loy
Statistician, Carleton College
sim_data %>%
plot_ly(x = ~x, y = ~y) %>%
add_histogram2d()
sim_data %>%
plot_ly(x = ~x, y = ~y) %>%
add_histogram2d(nbinsx = 200, nbinsy = 100)
Interactive Data Visualization with plotly in R