Autoplotter Tutorial | Fully Tested

data %>% filter(depth_m < 10) %>% auto_plot(by_group = treatment) # separate dashboard per treatment And for Shiny apps:

ggplot(data, aes(temperature, bleaching_score)) + geom_point(aes(color = fish_diversity > 6), alpha = 0.7) + geom_smooth(method = "lm", se = FALSE, aes(group = fish_diversity > 6)) + labs(title = "High fish diversity buffers thermal bleaching") Saved as Figure_2.png and submitted to Coral Reefs journal. | Function | Use case | |----------|----------| | auto_plot(df) | Interactive EDA dashboard | | auto_scatter(df, x, y, color) | Smart scatter with defaults | | auto_report(df) | Export a full exploration document | | auto_shiny(df) | Launch a custom Shiny explorer | | auto_notes(df) <- "text" | Attach metadata to plots | autoplotter tutorial

auto_notes(data) <- "Temperature above 29°C drives bleaching, mitigated by shading treatment." Those notes appeared in the report’s appendix. Alia had to re-run the same plots weekly as new data arrived. autoplotter worked inside dplyr pipelines: autoplotter worked inside dplyr pipelines:

Похожие программы