Skip to content

Commit

Permalink
Update tmx.R
Browse files Browse the repository at this point in the history
  • Loading branch information
tbates committed Nov 17, 2024
1 parent 66e67cd commit 1a9fce2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/tmx.R
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ tmx_show <- function(x, what = c("values", "free", "labels", "nonzero_or_free"),
#' @param bootstrap_options border etc. Defaults to c("hover", "bordered", "condensed", "responsive")
#' @param lightable_options Default is "striped"
#' @param html_font Default is null. Set (e.g. "Optima") to override the style's default font.
#' @param freeColor Default is "black" for free, fixed is gray "#AAAAAA"
#' @param freeColor Default is green free red fixed.
#' @return None
#' @export
#' @family Reporting functions
Expand Down Expand Up @@ -315,7 +315,7 @@ tmx_show <- function(x, what = c("values", "free", "labels", "nonzero_or_free"),
#' tmx_show(amat, lightable_options = "hover")
#' }
#'
tmx_show.MxMatrix <- function(x, what = c("values", "free", "labels", "nonzero_or_free"), show = c("free", "fixed", "all"), matrices = c("S", "A", "M"), digits = 2, report = c("html", "markdown"), na.print = "", zero.print = ".", html_font = NULL, style = c("paper","material_dark", "classic", "classic_2", "minimal", "material"), bootstrap_options=c("hover", "bordered", "condensed", "responsive"), lightable_options = "striped", freeColor = c("black", "#AAAAAA")){
tmx_show.MxMatrix <- function(x, what = c("values", "free", "labels", "nonzero_or_free"), show = c("free", "fixed", "all"), matrices = c("S", "A", "M"), digits = 2, report = c("html", "markdown"), na.print = "", zero.print = ".", html_font = NULL, style = c("paper","material_dark", "classic", "classic_2", "minimal", "material"), bootstrap_options=c("hover", "bordered", "condensed", "responsive"), lightable_options = "striped", freeColor = c("green", "red")){
what = match.arg(what)
show = match.arg(show)
report = match.arg(report)
Expand Down

0 comments on commit 1a9fce2

Please sign in to comment.