-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.qmd
55 lines (39 loc) · 1.21 KB
/
resume.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
---
title: ""
author: "Caleb J. Picker"
format: html
toc: TRUE
toc-location: left
editor: visual
bibliography: references.bib
theme:
light: minty
dark: darkly
link-external-icon: true
linestretch: 1.2
---
```{r}
#| column: screen-inset-shaded
#| layout-nrow: 1
"• Automated creation of ad hoc P&Ls and Daily Operating Revenue KPI charts using Python"
"• Introduced standardized statistical methods, such as calculating seasonality indices, z-scores, and 95% confidence intervals"
"• Under SMT guidance, used R, Excel, and Tableau to program replacement of expensive third-party statistical software"
```
```{r}
library(ggplot2)
y<-runif(50,2,8)
plot(y,exp(y),main="My Projected Career Trajectory")
```
## Quarto
Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.
## Running Code
When you click the **Render** button a document will be generated that includes both content and the output of embedded code. You can embed code like this:
```{r}
1 + 1
```
You can add options to executable code like this
```{r}
#| echo: false
2 * 2
```
The `echo: false` option disables the printing of code (only output is displayed).