├── .gitignore ├── DESCRIPTION ├── Makefile ├── NAMESPACE ├── R ├── citation_trend.R ├── geom_cake.R ├── geom_ord_ellipse.R ├── ggbaxis.R ├── ggpar.R ├── ggqrcode.R ├── ggvenn.R ├── gv2file.R ├── msaPrettyPlot.R ├── plot_dlstats_bioc.R ├── pubmed_trend.R ├── reexport.R ├── set_axis_text_color.R └── slides2png.R ├── man ├── ggpar.Rd ├── ggqrcode.Rd ├── ggvenn.Rd ├── gv2file.Rd ├── msaPrettyPlot.Rd ├── plot_citation_trend.Rd ├── plot_dlstats_bioc.Rd ├── pubmed_trend.Rd ├── reexports.Rd ├── set_axis_text_color.Rd └── slides2png.Rd └── yyplot.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/citation_trend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/R/citation_trend.R -------------------------------------------------------------------------------- /R/geom_cake.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/R/geom_cake.R -------------------------------------------------------------------------------- /R/geom_ord_ellipse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/R/geom_ord_ellipse.R -------------------------------------------------------------------------------- /R/ggbaxis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/R/ggbaxis.R -------------------------------------------------------------------------------- /R/ggpar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/R/ggpar.R -------------------------------------------------------------------------------- /R/ggqrcode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/R/ggqrcode.R -------------------------------------------------------------------------------- /R/ggvenn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/R/ggvenn.R -------------------------------------------------------------------------------- /R/gv2file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/R/gv2file.R -------------------------------------------------------------------------------- /R/msaPrettyPlot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/R/msaPrettyPlot.R -------------------------------------------------------------------------------- /R/plot_dlstats_bioc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/R/plot_dlstats_bioc.R -------------------------------------------------------------------------------- /R/pubmed_trend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/R/pubmed_trend.R -------------------------------------------------------------------------------- /R/reexport.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/R/reexport.R -------------------------------------------------------------------------------- /R/set_axis_text_color.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/R/set_axis_text_color.R -------------------------------------------------------------------------------- /R/slides2png.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/R/slides2png.R -------------------------------------------------------------------------------- /man/ggpar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/man/ggpar.Rd -------------------------------------------------------------------------------- /man/ggqrcode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/man/ggqrcode.Rd -------------------------------------------------------------------------------- /man/ggvenn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/man/ggvenn.Rd -------------------------------------------------------------------------------- /man/gv2file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/man/gv2file.Rd -------------------------------------------------------------------------------- /man/msaPrettyPlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/man/msaPrettyPlot.Rd -------------------------------------------------------------------------------- /man/plot_citation_trend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/man/plot_citation_trend.Rd -------------------------------------------------------------------------------- /man/plot_dlstats_bioc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/man/plot_dlstats_bioc.Rd -------------------------------------------------------------------------------- /man/pubmed_trend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/man/pubmed_trend.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/set_axis_text_color.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/man/set_axis_text_color.Rd -------------------------------------------------------------------------------- /man/slides2png.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/man/slides2png.Rd -------------------------------------------------------------------------------- /yyplot.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuangchuangYu/yyplot/HEAD/yyplot.Rproj --------------------------------------------------------------------------------