Questions tagged [reporttools]

An R package to generate LaTeX Tables of Descriptive Statistics

3 questions
4
votes
1 answer

In R and reporttools: Can I suppress 'all' category of grouped stats produced by tableContinuous?

I'm working with the tableContinuous function of the reporttools package in R. Everything works as expected and using some example from docs: library("reporttools") data(CO2) vars <- CO2[, 4:5] group <- CO2[, "Treatment"] weights <- c(rep(1, 60),…
radek
  • 7,240
  • 8
  • 58
  • 83
3
votes
1 answer

Is it possible to to export from reporttools?

I am using tableNominal{reporttools} to produce frequency tables. The way I understand it, tableNominal() produces latex code which has to be copied and pasted onto a text file and then saved as .tex. But is it possible to simple export the table…
user702432
  • 11,898
  • 21
  • 55
  • 70
1
vote
0 answers

what is the correct way to reference variables when using tidyverse with other functions?

say I would like to use reporttools with tidyverse, I first make sure the packages are loaded, #install.packages("tidyverse", "reporttools") #Use this to install it, do this only once library(reporttools); library(tidyverse) Second I test it with…
Eric Fail
  • 8,191
  • 8
  • 72
  • 128