2025-06-09

Time Spent Alone vs Going Outside

## Warning in RColorBrewer::brewer.pal(N, "Set2"): minimal value for n is 3, returning requested palette with 3 different levels
## Warning in RColorBrewer::brewer.pal(N, "Set2"): minimal value for n is 3, returning requested palette with 3 different levels

Drained After Socializing vs Friends Circle Size

## Warning in RColorBrewer::brewer.pal(N, "Set2"): minimal value for n is 3, returning requested palette with 3 different levels
## Warning in RColorBrewer::brewer.pal(N, "Set2"): minimal value for n is 3, returning requested palette with 3 different levels

Stage Fear vs Personality

Friend Circle Size vs Personality

## Warning: Removed 77 rows containing non-finite outside the scale range
## (`stat_count()`).

Latex Slide 1

Einstein came up with \(E=mc^2\).

Pythagorean Theorem

The formula for Pythagorean Theorem is \(a^2\) + \(b^2\) \(=c^2\)

R Code used

Drained After Socializing vs Friends Circle Size .```{r func2,out.width=“100%”,out.height=“50%”} filt <- df %>% filter(!is.na(Drained_after_socializing) & !is.na(Friends_circle_size)) scatter <- plot_ly( data = filt, x = ~Drained_after_socializing, y = ~Friends_circle_size, type = “bar”, color = ~Personality ) scatter