├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── check-standard.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── export ├── export.rdb ├── export.rdx ├── graph2bitmap.R ├── graph2office.R ├── graph2vector.R ├── rgl2bitmap.R ├── table2office.R ├── table2spreadsheet.R ├── table2tex.R └── utils.R ├── README.md ├── examples ├── graph2bitmap.R ├── graph2office.R ├── graph2vector.R ├── rgl2bitmap.R ├── table2office.R ├── table2spreadsheet.R └── table2tex.R ├── inst └── templates │ ├── A1_landscape.pptx │ ├── A1_portrait.pptx │ ├── A2_landscape.pptx │ ├── A2_portrait.pptx │ ├── A3_landscape.docx │ ├── A3_landscape.pptx │ ├── A3_portrait.docx │ ├── A3_portrait.pptx │ ├── A4_landscape.docx │ ├── A4_landscape.pptx │ ├── A4_portrait.docx │ ├── A4_portrait.pptx │ ├── A5_landscape.docx │ ├── A5_landscape.pptx │ ├── A5_portrait.docx │ └── A5_portrait.pptx └── man ├── graph2bitmap.Rd ├── graph2office.Rd ├── graph2vector.Rd ├── rgl2bitmap.Rd ├── table2office.Rd ├── table2spreadsheet.Rd └── table2tex.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/R/export -------------------------------------------------------------------------------- /R/export.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/R/export.rdb -------------------------------------------------------------------------------- /R/export.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/R/export.rdx -------------------------------------------------------------------------------- /R/graph2bitmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/R/graph2bitmap.R -------------------------------------------------------------------------------- /R/graph2office.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/R/graph2office.R -------------------------------------------------------------------------------- /R/graph2vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/R/graph2vector.R -------------------------------------------------------------------------------- /R/rgl2bitmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/R/rgl2bitmap.R -------------------------------------------------------------------------------- /R/table2office.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/R/table2office.R -------------------------------------------------------------------------------- /R/table2spreadsheet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/R/table2spreadsheet.R -------------------------------------------------------------------------------- /R/table2tex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/R/table2tex.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/README.md -------------------------------------------------------------------------------- /examples/graph2bitmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/examples/graph2bitmap.R -------------------------------------------------------------------------------- /examples/graph2office.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/examples/graph2office.R -------------------------------------------------------------------------------- /examples/graph2vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/examples/graph2vector.R -------------------------------------------------------------------------------- /examples/rgl2bitmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/examples/rgl2bitmap.R -------------------------------------------------------------------------------- /examples/table2office.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/examples/table2office.R -------------------------------------------------------------------------------- /examples/table2spreadsheet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/examples/table2spreadsheet.R -------------------------------------------------------------------------------- /examples/table2tex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/examples/table2tex.R -------------------------------------------------------------------------------- /inst/templates/A1_landscape.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A1_landscape.pptx -------------------------------------------------------------------------------- /inst/templates/A1_portrait.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A1_portrait.pptx -------------------------------------------------------------------------------- /inst/templates/A2_landscape.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A2_landscape.pptx -------------------------------------------------------------------------------- /inst/templates/A2_portrait.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A2_portrait.pptx -------------------------------------------------------------------------------- /inst/templates/A3_landscape.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A3_landscape.docx -------------------------------------------------------------------------------- /inst/templates/A3_landscape.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A3_landscape.pptx -------------------------------------------------------------------------------- /inst/templates/A3_portrait.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A3_portrait.docx -------------------------------------------------------------------------------- /inst/templates/A3_portrait.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A3_portrait.pptx -------------------------------------------------------------------------------- /inst/templates/A4_landscape.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A4_landscape.docx -------------------------------------------------------------------------------- /inst/templates/A4_landscape.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A4_landscape.pptx -------------------------------------------------------------------------------- /inst/templates/A4_portrait.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A4_portrait.docx -------------------------------------------------------------------------------- /inst/templates/A4_portrait.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A4_portrait.pptx -------------------------------------------------------------------------------- /inst/templates/A5_landscape.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A5_landscape.docx -------------------------------------------------------------------------------- /inst/templates/A5_landscape.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A5_landscape.pptx -------------------------------------------------------------------------------- /inst/templates/A5_portrait.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A5_portrait.docx -------------------------------------------------------------------------------- /inst/templates/A5_portrait.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/inst/templates/A5_portrait.pptx -------------------------------------------------------------------------------- /man/graph2bitmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/man/graph2bitmap.Rd -------------------------------------------------------------------------------- /man/graph2office.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/man/graph2office.Rd -------------------------------------------------------------------------------- /man/graph2vector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/man/graph2vector.Rd -------------------------------------------------------------------------------- /man/rgl2bitmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/man/rgl2bitmap.Rd -------------------------------------------------------------------------------- /man/table2office.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/man/table2office.Rd -------------------------------------------------------------------------------- /man/table2spreadsheet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/man/table2spreadsheet.Rd -------------------------------------------------------------------------------- /man/table2tex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomwenseleers/export/HEAD/man/table2tex.Rd --------------------------------------------------------------------------------