Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Export | 176 | 6 months ago | 2 | December 07, 2022 | 4 | R | ||||
R package for streamlined export of graphs and data tables. | ||||||||||
Pgfplots | 140 | 2 months ago | 204 | TeX | ||||||
pgfplots - A TeX package to draw normal and/or logarithmic plots directly in TeX in two and three dimensions with a user-friendly interface and pgfplotstable - a TeX package to round and format numerical tables. Examples in manuals and/or on web site. | ||||||||||
Ascii Data | 113 | 1 | 2 | 4 years ago | 4 | May 01, 2019 | 3 | apache-2.0 | Java | |
A small Java library for producing nice looking text-based line-graphs and tables. | ||||||||||
Sqlalchemy_schemadisplay | 105 | 11 | 8 | 8 months ago | 5 | January 27, 2016 | 10 | other | Python | |
Gcc | 99 | 2 years ago | 3 | mit | Python | |||||
GCC: Graph Contrastive Coding for Graph Neural Network Pre-Training | ||||||||||
Leafpop | 89 | 2 | 6 | a year ago | 4 | May 22, 2021 | 6 | other | R | |
Include Tables, Images and Graphs in Leaflet Popups | ||||||||||
Rimbu | 85 | 10 | 9 days ago | 25 | July 02, 2022 | 3 | mit | TypeScript | ||
Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools. | ||||||||||
Sub Gc | 75 | 10 months ago | 1 | mit | Jupyter Notebook | |||||
Code repository for our paper "Comprehensive Image Captioning via Scene Graph Decomposition" in ECCV 2020. | ||||||||||
Tern | 51 | a day ago | 79 | other | R | |||||
Table, Listings, and Graphs (TLG) library for common outputs used in clinical trials | ||||||||||
Graphvix | 50 | 3 | 4 | 6 months ago | 6 | July 08, 2018 | 7 | mit | Elixir | |
Graphviz for Elixir |
export is an R package to easily export active R graphs and statistical output in publication quality to Microsoft Office (Word, PowerPoint and Excel), HTML and Latex.
The export package works cross-platform on Windows, Ubuntu & Mac. Some Mac distributions though do not have the cairo device installed by default, and this is required by the export package. This problem is solved if Mac users first install XQuartz, which is available for free from https://www.xquartz.org/.
You can report bugs at http://github.com/tomwenseleers/export/issues. If you report a bug, try to send a reproducible example and don't forget to send the result of
sessionInfo()
Get the latest official release from CRAN:
install.packages("export")
Get the latest development version:
install.packages("officer")
install.packages("rvg")
install.packages("openxlsx")
install.packages("ggplot2")
install.packages("flextable")
install.packages("xtable")
install.packages("rgl")
install.packages("stargazer")
install.packages("tikzDevice")
install.packages("xml2")
install.packages("broom")
install.packages("devtools")
devtools::install_github("tomwenseleers/export")
library(export)
?graph2ppt
?graph2doc
?graph2svg
?graph2png
?table2ppt
?table2tex
?table2excel
?table2doc
?table2html
## export of ggplot2 plot
library(ggplot2)
qplot(Sepal.Length, Petal.Length, data = iris, color = Species,
size = Petal.Width, alpha = I(0.7))
# export to Powerpoint
graph2ppt()
graph2ppt(file="ggplot2_plot.pptx", aspectr=1.7)
# add 2nd slide with same graph 9 inches wide and A4 aspect ratio
graph2ppt(file="ggplot2_plot.pptx", width=9, aspectr=sqrt(2), append=TRUE)
# add 3d slide with same graph with fixed width & height
graph2ppt(file="ggplot2_plot.pptx", width=6, height=5, append=TRUE)
# export to Word
graph2doc()
# export to bitmap or vector formats
graph2svg()
graph2png()
graph2tif()
graph2jpg()
## export of aov Anova output
fit=aov(yield ~ block + N * P + K, npk)
x=summary(fit)
# export to Powerpoint
table2ppt(x=x)
table2ppt(x=x,file="table_aov.pptx")
table2ppt(x=x,file="table_aov.pptx",digits=4,append=TRUE)
table2ppt(x=x,file="table_aov.pptx",digits=4,digitspvals=1,
font="Times New Roman",pointsize=16,append=TRUE)
# export to Word
table2doc(x=x)
# export to Excel
table2excel(x=x, file = "table_aov.xlsx",digits=4,digitspvals=1,
sheetName = "Anova_table", add.rownames = TRUE)
# export to Latex
table2tex(x=x)
# export to HTML
table2html(x=x)
The export package is licensed under the GPLv2.