-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.qmd
48 lines (38 loc) · 1.54 KB
/
index.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
---
title: "yHat"
image: headshot.jpg
about:
template: jolla
links:
- text: LinkedIn
url: "https://linkedin.com/in/rahulsangole"
- text: Twitter
icon: twitter
url: "https://twitter.com/rsangole"
- text: GitHub
icon: github
url: "https://github.com/rsangole"
- text: Email
url: "mailto:[email protected]"
comments: false
---
::: {.column-page}
##
Hello, my name is Rahul. This is a blog where I write about R and data science.
I’m a data scientist at Apple where my work focuses on time-series, R in production and Shiny dashboarding. Before [Apple](https://www.apple.com), I worked as a data science manager at [Cummins](https://www.cummins.com) where I focused on developing time-series anomaly detection algorithms for [engine health monitoring](https://www.cummins.com/parts-and-service/digital-products-and-services/preventech-mining). In my former career, I worked as a mechanical engineer with a focus on computational stress, vibration and fatigue modeling.
I have a Master’s degree in Predictive Analytics from Northwestern University and another in Mechanical Engineering from the University of Michigan.
:::
```{r include=FALSE}
# list names of post folders
posts <- list.dirs(
path = here::here("posts"),
full.names = FALSE,
recursive = FALSE
)
# extract the slugs
slugs <- gsub("^.*_", "", posts)
# lines to insert to a netlify _redirect file
redirects <- paste0("/", slugs, " ", "/posts/", posts)
# write the _redirect file
writeLines(redirects, here::here("_site", "_redirects"))
```