updated cv
This commit is contained in:
parent
cb13c65058
commit
c213db6477
39
cv.Rmd
39
cv.Rmd
@ -29,6 +29,7 @@ library(vitae)
|
|||||||
library(dplyr)
|
library(dplyr)
|
||||||
library(tibble)
|
library(tibble)
|
||||||
library(rorcid)
|
library(rorcid)
|
||||||
|
library(RefManageR)
|
||||||
|
|
||||||
orc_id <- "0000-0002-7559-1154"
|
orc_id <- "0000-0002-7559-1154"
|
||||||
get_new_pub_list <- FALSE
|
get_new_pub_list <- FALSE
|
||||||
@ -40,7 +41,7 @@ get_new_pub_list <- FALSE
|
|||||||
# About me
|
# About me
|
||||||
|
|
||||||
- I am a medical doctor and PhD-student
|
- I am a medical doctor and PhD-student
|
||||||
- I have a special interest in the relation between clinical focus on patients and data driven research
|
- I have a special interest in the relation between clinical focus on patients and data driven research, with a focus of stroke treatment and prevention.
|
||||||
- I am a very happy *R*-user, educator and developer
|
- I am a very happy *R*-user, educator and developer
|
||||||
|
|
||||||
# Medical experience
|
# Medical experience
|
||||||
@ -68,14 +69,27 @@ tribble(
|
|||||||
"Research Year Student", "2016-2017", "Neurology", "Aarhus Universitety Hospital, Denmark",
|
"Research Year Student", "2016-2017", "Neurology", "Aarhus Universitety Hospital, Denmark",
|
||||||
"Residency (KBU)", "2018-2019", "Hospital Unit West", "Central Region Denmark, Denmark",
|
"Residency (KBU)", "2018-2019", "Hospital Unit West", "Central Region Denmark, Denmark",
|
||||||
"Research Assistant (14 months full time)", "2018, 2019, 2021", "Neurology", "Aarhus Universitety Hospital, Denmark",
|
"Research Assistant (14 months full time)", "2018, 2019, 2021", "Neurology", "Aarhus Universitety Hospital, Denmark",
|
||||||
"First year of specialty training in Neurology", "2020", "Aarhus Universitety Hospital", "Aarhus, Denmark",
|
"First year of specialty training in Neurology", "2020", "Aarhus Universitety Hospital", "Aarhus, Denmark"
|
||||||
"Visiting professor", "2023", "University of British Columbia, Vancouver", "BC, Canada",
|
|
||||||
) %>% arrange(desc(when)) |>
|
) %>% arrange(desc(when)) |>
|
||||||
detailed_entries(who, when, what, where)
|
detailed_entries(who, when, what, where)
|
||||||
# ?tibble::tribble
|
# ?tibble::tribble
|
||||||
```
|
```
|
||||||
|
|
||||||
# Conference attendance
|
# Academic experience
|
||||||
|
|
||||||
|
## Positions
|
||||||
|
|
||||||
|
```{r Positions}
|
||||||
|
tribble(
|
||||||
|
~ what, ~ when, ~ who, ~ where,
|
||||||
|
"PhD-fellow: Physical activity and Stroke", "2022-2025", "Health, Aarhus University", "Denmark",
|
||||||
|
"Visiting professor", "2023", "University of British Columbia, Vancouver", "BC, Canada"
|
||||||
|
) %>% arrange(desc(when)) |>
|
||||||
|
detailed_entries(who, when, what, where)
|
||||||
|
# ?tibble::tribble
|
||||||
|
```
|
||||||
|
|
||||||
|
## International conference attendance
|
||||||
|
|
||||||
```{r Conferences}
|
```{r Conferences}
|
||||||
library(tibble)
|
library(tibble)
|
||||||
@ -91,7 +105,11 @@ tribble(
|
|||||||
# ?tibble::tribble
|
# ?tibble::tribble
|
||||||
```
|
```
|
||||||
|
|
||||||
\newpage
|
## Supervision and collaboration
|
||||||
|
|
||||||
|
I have supervised several peers on research projects including medical master and bachelor students as well as other health professionals.
|
||||||
|
|
||||||
|
I am also involved in a number of ongoing health research project with collaborators from Denmark, Canada, Tanzania and China.
|
||||||
|
|
||||||
# Publications
|
# Publications
|
||||||
|
|
||||||
@ -103,6 +121,7 @@ if (get_new_pub_list | !file.exists("bib-files/publications.bib")) {
|
|||||||
suppressWarnings(orcid_pubs(orc_id))
|
suppressWarnings(orcid_pubs(orc_id))
|
||||||
}
|
}
|
||||||
## 13032024: I've resorted to manually update publications on non-journal publications as they are not correctly retrieved.
|
## 13032024: I've resorted to manually update publications on non-journal publications as they are not correctly retrieved.
|
||||||
|
## 28032025: If metadata is correct on Zenodo, data comes through, but are more easily currated manually
|
||||||
|
|
||||||
articles <- bibliography_entries("bib-files/publications.bib") %>% filter(type == "article-journal")
|
articles <- bibliography_entries("bib-files/publications.bib") %>% filter(type == "article-journal")
|
||||||
|
|
||||||
@ -129,7 +148,8 @@ articles |> filter(!main_author) |> arrange(desc(issued))
|
|||||||
library(tibble)
|
library(tibble)
|
||||||
tribble(
|
tribble(
|
||||||
~ why, ~ when, ~ what, ~ who,
|
~ why, ~ when, ~ what, ~ who,
|
||||||
"Research FUnding", "2022", "DKK 100.000", "Lægeforeningens Forskningsfond",
|
"Scholarship", "2024", "DKK 600.000", "Steno Diabetes Center Aarhus",
|
||||||
|
"Research Funding", "2022", "DKK 100.000", "Lægeforeningens Forskningsfond",
|
||||||
"Forskningsbevilling", "2016", "DKK 20.000","Selskab for Neurologisk Forskning",
|
"Forskningsbevilling", "2016", "DKK 20.000","Selskab for Neurologisk Forskning",
|
||||||
"Research Year Fellowship", "2015", "DKK 140.000", "Dansk Neurologisk Selskab"
|
"Research Year Fellowship", "2015", "DKK 140.000", "Dansk Neurologisk Selskab"
|
||||||
) %>% arrange(desc(when)) |>
|
) %>% arrange(desc(when)) |>
|
||||||
@ -137,19 +157,16 @@ tribble(
|
|||||||
# ?tibble::tribble
|
# ?tibble::tribble
|
||||||
```
|
```
|
||||||
|
|
||||||
\newpage
|
|
||||||
|
|
||||||
# Data science experience
|
# Data science experience
|
||||||
|
|
||||||
## *R* packages on Zenodo and CRAN
|
## Selected *R* packages on Zenodo and CRAN
|
||||||
|
|
||||||
```{r Others}
|
```{r Others}
|
||||||
bibliography_entries(here::here("bib-files/agd-other.bib")) |> arrange(desc(issued))
|
bibliography_entries(here::here("bib-files/agd-other.bib")) |> arrange(desc(issued))
|
||||||
```
|
```
|
||||||
|
|
||||||
Apart from the referenced CRAN-projects, I am also maintaining a number of other projects.
|
I have completed work as a clinical data consultant in doing counselling and data management support for a number of smaller and bigger research projects. All my coding work is shared under open and public licenses, mainly on my GitHub repository (see top).
|
||||||
|
|
||||||
I have accepted work as a clinical data consultant in doing counselling and data management support for a number of smaller and bigger research projects. All by coding work is shared under open and public licenses, mainly on my own GitHub repository (see top).
|
|
||||||
|
|
||||||
## Courses
|
## Courses
|
||||||
|
|
||||||
|
1
cv.Rproj
1
cv.Rproj
@ -1,4 +1,5 @@
|
|||||||
Version: 1.0
|
Version: 1.0
|
||||||
|
ProjectId: 2b49979b-18e5-4f87-a0e3-efbc9fdeaab0
|
||||||
|
|
||||||
RestoreWorkspace: Default
|
RestoreWorkspace: Default
|
||||||
SaveWorkspace: Default
|
SaveWorkspace: Default
|
||||||
|
55
cv_da.Rmd
55
cv_da.Rmd
@ -43,8 +43,8 @@ get_new_pub_list <- FALSE
|
|||||||
|
|
||||||
# Introduktion
|
# Introduktion
|
||||||
|
|
||||||
- Jeg er læge, PhD-studerende, far til Ebba og Anne på 1 og 3 år, og gift med Caroline.
|
- Jeg er læge, PhD-studerende, far til Ebba og Anne på 3 og 5 år, og gift med Caroline.
|
||||||
- I mit forskningsarbejde er jeg drevet af at holde øjnene på mennesket bag sygdommen og på hvordan livstil og sygdom påvirker hinanden.
|
- I mit forskningsarbejde er jeg drevet af at holde øjnene på mennesket bag sygdommen og på hvordan livstil og sygdom påvirker hinanden. Det gør jeg med udgangspunkt i stroke-behandling og forebyggelse.
|
||||||
|
|
||||||
# Lægefaglig erfaring
|
# Lægefaglig erfaring
|
||||||
|
|
||||||
@ -74,20 +74,40 @@ tribble(
|
|||||||
# ?tibble::tribble
|
# ?tibble::tribble
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# Forskningserfaring
|
||||||
|
|
||||||
<!-- # Forskningserfaring -->
|
## Stillinger
|
||||||
|
```{r Positions}
|
||||||
|
tribble(
|
||||||
|
~ what, ~ when, ~ who, ~ where,
|
||||||
|
"PhD-studerende: Physical activity and Stroke", "2022-2025", "Health, Aarhus Universitet", "Danmark",
|
||||||
|
"Visiting professor", "2023", "University of British Columbia, Vancouver", "BC, Canada"
|
||||||
|
) %>% arrange(desc(when)) |>
|
||||||
|
detailed_entries(who, when, what, where)
|
||||||
|
# ?tibble::tribble
|
||||||
|
```
|
||||||
|
|
||||||
<!-- ## Konferencedeltagelse -->
|
## Internationale konferencer
|
||||||
<!-- ```{r Conferences} -->
|
|
||||||
<!-- library(tibble) -->
|
```{r Conferences}
|
||||||
<!-- tribble( -->
|
library(tibble)
|
||||||
<!-- ~ what, ~ when, ~ who, ~ where, -->
|
tribble(
|
||||||
<!-- "ESOC", "2017", "European Stroke Organisation", "Prag, Tjekkiet", -->
|
~ what, ~ when, ~ who, ~ where,
|
||||||
<!-- "ESOC", "2023", "European Stroke Organisation", "München, Tyskland" -->
|
"ESOC 2017", "2017", "European Stroke Organisation", "Prague, Czechia",
|
||||||
<!-- ) %>% -->
|
"ESOC 2021", "2021", "European Stroke Organisation", "Online",
|
||||||
<!-- detailed_entries(what, when, who, where) -->
|
"ESOC 2023", "2023", "European Stroke Organisation", "Munich, Germany",
|
||||||
<!-- # ?tibble::tribble -->
|
"WSC 2023", "2023", "World Stroke Organisation", "Toronto, Canada",
|
||||||
<!-- ``` -->
|
"ESOC 2024", "2024", "European Stroke Organisation", "Basel, Switzerland"
|
||||||
|
) %>% arrange(desc(when)) |>
|
||||||
|
detailed_entries(who, when, what, where)
|
||||||
|
# ?tibble::tribble
|
||||||
|
```
|
||||||
|
|
||||||
|
## Vejledning og samarbejde
|
||||||
|
|
||||||
|
Jeg har været vejleder med forskellige opgaver for flere studerende og kollegaer på forskningsopgaver og projekter. Herunder medicinstuderende og andre sundhedsfaglige.
|
||||||
|
|
||||||
|
Jeg er en del af flere forløbende forskningsprojekter med samarbejdspartnere i både Danmark, Canada, Tanzania og Kina.
|
||||||
|
|
||||||
# Publikationer
|
# Publikationer
|
||||||
|
|
||||||
@ -116,7 +136,7 @@ articles |> filter(!main_author) |> arrange(desc(issued))
|
|||||||
|
|
||||||
## Øvrige udgivelser
|
## Øvrige udgivelser
|
||||||
```{r Others}
|
```{r Others}
|
||||||
bibliography_entries("bib-files/publications.bib") %>% filter(type != "article-journal") |> arrange(desc(issued))
|
bibliography_entries(here::here("bib-files/agd-other.bib")) |> arrange(desc(issued))
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
@ -126,6 +146,7 @@ bibliography_entries("bib-files/publications.bib") %>% filter(type != "article-j
|
|||||||
library(tibble)
|
library(tibble)
|
||||||
tribble(
|
tribble(
|
||||||
~ why, ~ when, ~ what, ~ who,
|
~ why, ~ when, ~ what, ~ who,
|
||||||
|
"Årsstipendium", "2024", "DKK 600.000", "Steno Diabetes Center Aarhus",
|
||||||
"Forskningsbevilling", "2022", "DKK 100.000", "Lægeforeningens Forskningsfond",
|
"Forskningsbevilling", "2022", "DKK 100.000", "Lægeforeningens Forskningsfond",
|
||||||
"Forskningsbevilling", "2016", "DKK 20.000","Selskab for Neurologisk Forskning",
|
"Forskningsbevilling", "2016", "DKK 20.000","Selskab for Neurologisk Forskning",
|
||||||
"Forskningsårsstipendium", "2015", "DKK 140.000", "Dansk Neurologisk Selskab"
|
"Forskningsårsstipendium", "2015", "DKK 140.000", "Dansk Neurologisk Selskab"
|
||||||
@ -136,12 +157,12 @@ tribble(
|
|||||||
|
|
||||||
# Kommunikation og samarbejde
|
# Kommunikation og samarbejde
|
||||||
|
|
||||||
Jeg har gennem forskelligt organisationsarbejde fået erfaring med projektledelse på både store og mindre projekter. Det er gode erfaringer jeg hverdag har glæde af i mit prefessionelle arbejdsliv.
|
Jeg har gennem forskelligt organisationsarbejde fået værdifuld erfaring med kommunikation og projektledelse i både større og mindre sammenhænge. Det er gode erfaringer jeg hver dag også har glæde af i mit professionelle arbejdsliv.
|
||||||
|
|
||||||
```{r Communication}
|
```{r Communication}
|
||||||
library(tibble)
|
|
||||||
tribble(
|
tribble(
|
||||||
~ what, ~ when, ~ who, ~ where,
|
~ what, ~ when, ~ who, ~ where,
|
||||||
|
"Oplæg om stroke og forebyggelse", "2024-", "Hjernesagen", "Danmark",
|
||||||
"Formand for internationalt projekt", "2014-2018", "FDF og KFUM&KFUK", "Danmark/Myanmar",
|
"Formand for internationalt projekt", "2014-2018", "FDF og KFUM&KFUK", "Danmark/Myanmar",
|
||||||
"Bestyrelsesmedlem", "2018-2021", "Danmission", "Danmark",
|
"Bestyrelsesmedlem", "2018-2021", "Danmission", "Danmark",
|
||||||
"Kursus: Personligt Lederskab (to dage)", "2018", "Dansk Ungdoms Fællesråd (DUF)", "Haslev",
|
"Kursus: Personligt Lederskab (to dage)", "2018", "Dansk Ungdoms Fællesråd (DUF)", "Haslev",
|
||||||
|
BIN
docs/cv.pdf
BIN
docs/cv.pdf
Binary file not shown.
BIN
docs/cv_da.pdf
BIN
docs/cv_da.pdf
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user