-
Notifications
You must be signed in to change notification settings - Fork 1
/
academic-cv-summary.Rmd
36 lines (27 loc) · 1.19 KB
/
academic-cv-summary.Rmd
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
---
title: "Research publication summary"
author: "Marie Skłodowska-Curie"
date: "`r Sys.Date()`"
output:
pdf_document: default
abstract: |
(Mostly) Automatically generated summary of the academic/publishing curriculum.
myId: EmD_lTEAAAAJ
---
```{r setup,echo=FALSE,message=FALSE}
require(scholar)
myId <- rmarkdown::metadata$myId
myProfile <- get_profile(myId)
myPapers <- get_publications(myId)
```
Currently, her Google Scholar profile includes `r length(myPapers$title)` papers, with a total of `r myProfile$total_cites` citations, and an `h` number of `r myProfile$h_index`. The number of publications, which includes book chapters, is `r length(myPapers$year)`.
The paper with the most citations is `r myPapers$title[1]`, with `r myPapers$cites[1]` cites.
Evolution of paper citations during the last few years is shown below.
```{r citation,echo=FALSE,message=FALSE}
history <- get_citation_history(myId)
library(ggplot2)
library(ggthemes)
last_year <- tail(history,n=2)
ggplot(history, aes(x=year,y=cites))+ geom_line()+ geom_point()+geom_line(data=last_year, aes(x=year,y=cites,color="Year so far"))+geom_point(data=last_year, aes(x=year,y=cites,color="Year so far"))+theme_tufte()
```
## References