美文网首页
R package:masstools画一个阿魏酸的二级质谱图

R package:masstools画一个阿魏酸的二级质谱图

作者: 佳名 | 来源:发表于2024-06-05 17:07 被阅读0次

    安装

    if(!require(remotes)){
    install.packages("remotes")
    }
    remotes::install_gitlab("jaspershen/masstools")
    
    library(masstools)
    spectrum1 <- data.frame(
      mz = c(
        133.0284,
        134.0383,
        178.0274,
        193.0504
      ),
      intensity =
        c(
          21.37909,
          71.00197,
          33.54125,
          11.33192
        )
    )
    
    ms2_plot(spectrum1)
    
    ms2_plot
    ms2_plot(spectrum1,spectrum1)
    
    ms2_plot

    参考资料:

    Introduction of masstools • masstools (tidymass.org)

    相关文章

      网友评论

          本文标题:R package:masstools画一个阿魏酸的二级质谱图

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