美文网首页R语言R语言做生信SCI写作
RISmed之查看自己研究方向近年文章发表情况

RISmed之查看自己研究方向近年文章发表情况

作者: 热衷组培的二货潜 | 来源:发表于2018-12-29 14:21 被阅读2次
    最重要的参考链接:如何优雅的用十分钟对Pubmed文本挖掘掌握研究现状?
    library(RISmed)
    ##限定下检索主题
    search_topic <- c('DNA methylation in plant') 
    search_query <- EUtilsSummary(search_topic,db="pubmed", retmax=10000,datetype='pdat', mindate=2000, maxdate=2018)
    ##查查看下检索内容
    summary(search_query)
    ##看下这些文献的Id
    QueryId(search_query)
    ##获取检索结果
    records<- EUtilsGet(search_query)
    class(records)
    str(records)
    ##提取检索结果
    pubmed_data <- data.frame('Title'=ArticleTitle(records),
                              'Year'=YearAccepted(records),
                              'journal'=ISOAbbreviation(records))
    
    head(pubmed_data,1)
    pubmed_data[1:3,1]
    write.csv(pubmed_data,file='DNA_methylation_in_plant.csv')
    ##分析文章情况
    y <- YearPubmed(EUtilsGet(search_query))
    ##可视化一下
    library(ggplot2)
    date()
    count <- table(y)
    count <- as.data.frame(count)
    names(count)<-c("Year", "Counts")
    library(ggsci)
    ggplot(data=count, aes(x=Year, y=Counts,fill=Year)) +
      geom_bar(stat="identity", width=0.5)+
      labs(y = "Number of articles",title="PubMed articles containing DNA methylation in plant"
      ) + theme_bw() + scale_fill_manual(values = colorRampPalette(brewer.pal(19, "Accent"))(19)) +
      theme(legend.position="bottom")
    
    image.png

    相关文章

      网友评论

        本文标题:RISmed之查看自己研究方向近年文章发表情况

        本文链接:https://www.haomeiwen.com/subject/pwnulqtx.html