如何对 yyyy-mm-dd 格式的行进行排序,以便在 Shiny r 的可旋转输出中降序?
我希望行是最近到较旧的日期。例如,我知道如何使用排序器部分中的以下代码按月排序,但不是日期格式。
sorters="
function(attr) {
var sortAs = $.pivotUtilities.sortAs;
if (attr == \"ContractCalendarMonth\")
{
return sortAs([\"7\", \"8\", \"9\", \"10\", \"11\", \"12\", \"1\", \"2\", \"3\",\"4\", \"5\", \"6\"]);
}
}"