-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIntro_revealjs.qmd
56 lines (42 loc) · 2.28 KB
/
Intro_revealjs.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
title: "Introduction using Reveal JS"
author: "Asif Enan"
format: revealjs
editor: visual
---
## Biographical information
Hello my name is Asif Enan, currently enrolled in the MS program in Statistics at the statistics department of University of Nebraska-Lincoln. I plan on doing the Phd as well, so I am expected to graduate by 2029.
- I was born in Bangladesh, but was bought up in Qatar
- My birthday is 2nd January every year.
## Favorite Animal
My favorite animal is the Nudibranch
![NudiBranch](nudibranch.jpg)
## Favorite \[ugliest\] plot
One of my favorite assignments in STAT-850 was creating an intentional ugly plot which violates many of the basic principles of good plot making. We used the palmer penguins dataset and my work looked like this:
```{r}
library(palmerpenguins)
library(ggplot2)
ggplot(penguins, aes(x = body_mass_g, y = bill_length_mm)) +
geom_text(aes(label = species, color = species), size = 10)+
# geom_point(size=5) +
scale_color_manual(values = c("red", "green", "ivory")) +
scale_x_continuous(limits = c(2500, 6500), breaks = seq(2500, 6500, by = 70)) +
scale_y_continuous(limits = c(30, 60), breaks = seq(30, 60, by = 0.3)) +
theme_minimal() +
geom_hline(yintercept = 40, size = 0.5, linetype="dashed")+
theme(
panel.background = element_rect(fill = "black"), # Black panel background
plot.background = element_rect(fill = "black"), # Black overall plot background
panel.grid = element_line(color = "white"), # White grid lines to contrast with black
axis.text = element_text(color = "white"), # White axis text to stand out
axis.title = element_text(color = "white",face = "bold"), # White axis labels
legend.title = element_text(color = "blue", size = 12),
legend.text = element_text(color = "purple", size = 10),
plot.title = element_text(color = "white", size = 16, face = "bold") #White title
)+
labs(title = "Scatterplot showing the relationship between bill length vs body mass \nof 3 species of penguins", x="Body mass (in grams)", y="Bill length (in millimeters)")
```
## CV
I made my CV on overleaf using LateX.
- For seeing the pdf file of my CV, click [here](EnanCV_US.pdf)
- If you're interested in using this template, I also have the tex file, for that click [here](main.tex)