我正在尝试计算每个不同日期的行数。
我的数据集如下所示(当然,日期更长,当然还有不同的日期-CREATION_DTNR是日期变量):
我尝试过:
Container(
height: double.infinity,
child: RefreshIndicator(
child: fetched && names.length == 0
? SingleChildScrollView(
physics: const AlwaysScrollableScrollPhysics(),
child: Text("Not able to fetch"))
: NamesList(names, widget.value, widget.header),
onRefresh: () => getJSONdata(widget.value),
))
但它不起作用。
答案 0 :(得分:0)
没有示例数据,很难验证和确定结果,但如果我正确理解了您的问题和数据集,则可能的解决方案应该是
library(dplyr)
geocable %>%
group_by(CREATION_DTNR) %>%
summarise(n_rows = n())