── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag() masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(purrrfect)
Attaching package: 'purrrfect'
The following objects are masked from 'package:base':
replicate, tabulate
sim_uv <-tibble(X =runif(10000, 0, 1),Y =runif(10000, 0, 1)) %>%mutate(U = X - Y,V = X + Y ) ggplot(sim_uv, aes(x = U, y = V)) +geom_point(alpha =0.2, size =0.7) +theme_minimal()