Skip to content

Commit

Permalink
updated on 2018-07-01 12:13:31
Browse files Browse the repository at this point in the history
  • Loading branch information
sbalci committed Jul 1, 2018
1 parent 1498b8f commit 771796a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 16 deletions.
5 changes: 4 additions & 1 deletion SchedulePubMedAnalysis2.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,10 @@ The retrieved information was compiled in a table.
```{r message=FALSE, warning=FALSE}
library(readr)
authorkeywords <- read_table2("/Users/serdarbalciold/RepTemplates/pubmed/data/authorkeywords.csv", col_names = c("frequency", "author key word"))
authorkeywords <- read_table2("/Users/serdarbalciold/RepTemplates/pubmed/data/authorkeywords.csv", col_names = c("frequency", "author key word"), cols(
frequency = col_integer(),
`author key word` = col_character()
))
authorkeywords <- authorkeywords %>%
head(n=20)
Expand Down
Loading

0 comments on commit 771796a

Please sign in to comment.