Skip to content

Commit

Permalink
updated on 2018-07-01 12:17:22
Browse files Browse the repository at this point in the history
  • Loading branch information
sbalci committed Jul 1, 2018
1 parent 746bd9b commit aec3e2f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 13 deletions.
7 changes: 5 additions & 2 deletions SchedulePubMedAnalysis2.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -153,12 +153,15 @@ library(readr)
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()
))
), guess_max = 100)
authorkeywords <- authorkeywords %>%
head(n=20)
PathologyTurkeyMeSH <- read_table2("/Users/serdarbalciold/RepTemplates/pubmed/data/PathologyTurkeyMeSH.csv", col_names = c("frequency", "MeSH term"))
PathologyTurkeyMeSH <- read_table2("/Users/serdarbalciold/RepTemplates/pubmed/data/PathologyTurkeyMeSH.csv", col_names = c("frequency", "MeSH term"), cols(
frequency = col_integer(),
`MeSH term` = col_character()
), guess_max = 100)
PathologyTurkeyMeSH <-PathologyTurkeyMeSH %>%
head(n = 20)
Expand Down
Loading

0 comments on commit aec3e2f

Please sign in to comment.