PowerPoint reporting of a textual analysis

Yes_textual(
  res,
  yes_study_name = "Textual analysis",
  path = getwd(),
  file.name = "textual_results.pptx",
  size_tab = 10,
  proba = 0.05,
  col.neg = "red",
  col.pos = "blue"
)

Arguments

res

FactoMineR::textual result

yes_study_name

title displayed on the first slide

path

PowerPoint file to be created

file.name

name of the PowerPoint file

size_tab

maximum number of rows of a table per slide

proba

the significance threshold considered to characterized the category (by default 0.05)

col.neg

color for negative values (on the wordclouds)

col.pos

color for positive values (on the wordclouds)

Value

Returns a .pptx file

Examples

if (FALSE) {
data(beard)
res.text <- FactoMineR::textual(beard,contingence.by = 1,num.text = 3)
# Create the PowerPoint in the current working directory
Yes_textual(res.text)
}