pilltabs: Given a cross-table, outputs HTML code to display several...

View source: R/pilltabs.R

pilltabsR Documentation

Given a cross-table, outputs HTML code to display several views of with a tabbed interface

Description

Given a two dimensions contingency table, this function outputs HTML code to display, within a dynamic tabbed interface, the count, row percentages, column percentages and chi-squared residuals tables.

Usage

pilltabs(
  tab,
  count = TRUE,
  rows = TRUE,
  cols = TRUE,
  chisq = TRUE,
  resid = TRUE,
  row.names = TRUE
)

Arguments

tab

a two dimensions table object

count

whether or not to display the count table

rows

whether or not to display the row percentages table

cols

whether or not to display the column percentages table

chisq

whether or not to display the table chi-squared test results

resid

whether or not to display the chi-squared residuals table

row.names

whether or not to display the table row names

Details

The function is intended to be called inside an rmarkdown document.

Value

No value is returned.

Examples


data(airquality)
tab <- table(airquality$Month, airquality$Ozone > 25)
pilltabs(tab)


juba/rmdformats documentation built on Feb. 22, 2024, 3:09 p.m.