Shiny アプリケーションで rpivotTable パッケージを使用していますが、ユーザーには「テーブル」のみを選択してもらいたい (グラフはありません)
RenderName 引数は、デフォルトの表示を選択するためにのみ使用されます...
output$pivot <- renderRpivotTable(
rpivotTable(iris,
rendererName = "Table" )
)
よろしくお願いします!
Shiny アプリケーションで rpivotTable パッケージを使用していますが、ユーザーには「テーブル」のみを選択してもらいたい (グラフはありません)
RenderName 引数は、デフォルトの表示を選択するためにのみ使用されます...
output$pivot <- renderRpivotTable(
rpivotTable(iris,
rendererName = "Table" )
)
よろしくお願いします!
ここには複数の問題があります。
renderers
の anonymos引数を介してレンダラーを指定できますrpivotTable()
。ここに JS コードフォームがあります。rpivotTable()
引数を再びリストにラップし (Map()
元の関数コードの呼び出しを参照)、JS への転送は失敗します。したがって、この問題を考慮して、機能を少し拡張しました。アグリゲーター/レンダラーをいじって、元の関数とどのように異なる動作をするかを確認してくださいrpivotTable()
。
# define own function
my_rpivotTable <- function (data, rows = NULL, cols = NULL, aggregatorName = NULL,
vals = NULL, rendererName = NULL, sorter = NULL, exclusions = NULL,
inclusions = NULL, locale = "en", subtotals = FALSE, ...,
width = 800, height = 600, elementId = NULL)
{
if (length(intersect(class(data), c("data.frame", "data.table",
"table", "structable", "ftable"))) == 0) {
stop("data should be a data.frame, data.table, or table",
call. = F)
}
if (length(intersect(c("table", "structable", "ftable"),
class(data))) > 0)
data <- as.data.frame(data)
params <- list(rows = rows, cols = cols, aggregatorName = aggregatorName,
vals = vals, rendererName = rendererName, sorter = sorter,
...)
params <- Map(function(p) {
# added to the class check -------------------------------------------------
if (length(p) == 1 && class(p[[1]]) != "JS_EVAL") {
p = list(p)
}
return(p)
}, params)
par <- list(exclusions = exclusions, inclusions = inclusions)
params <- c(params, par)
params <- Filter(Negate(is.null), params)
x <- list(data = data, params = params, locale = locale,
subtotals = subtotals)
htmlwidgets::createWidget(name = "rpivotTable", x, width = width,
height = height, elementId = elementId, package = "rpivotTable")
}
# create the pivot table
my_rpivotTable(
expand.grid(LETTERS, 1:3),
aggregatorName = "Count",
aggregators = list(Sum = htmlwidgets::JS('$.pivotUtilities.aggregators["Sum"]'),
Count = htmlwidgets::JS('$.pivotUtilities.aggregators["Count"]')),
rendererName = "fancyTable",
renderers = list(fancyTable = htmlwidgets::JS('$.pivotUtilities.renderers["Table"]'))
)