我想总结数据,但我想先将数据分组以获得NULL计数。我可以弄清楚如何按照我想要的方式汇总数据,但我似乎无法首先弄清楚如何使用groupby函数来翻译它。
有人能指出我正确的语法吗?
谢谢
// create the object
var myButtons = {
"Ok": function () {
$(this).dialog("close");
}
};
// conditionally add a "print" button
if (someCondition) {
myButtons.Print = function() {
$(this).dialog().printArea();
}
}
// use the object
$("<div></div>").dialog( {
buttons: myButtons,
close: function (event, ui) { $(this).remove(); },
// etc.
});
答案 0 :(得分:-2)
我明白了。
group.get_group("<GROUPNAME>").isnull().sum()
结果是:
BLAH 1
COUNT 2
MEASURE 1
dtype: int64
全部谢谢