使用GroupBy在行中查找空值

时间:2016-11-16 19:15:52

标签: python python-2.7 pandas

我想总结数据,但我想先将数据分组以获得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.
});

1 个答案:

答案 0 :(得分:-2)

我明白了。

group.get_group("<GROUPNAME>").isnull().sum()

结果是:

BLAH       1
COUNT      2
MEASURE    1
dtype: int64

全部谢谢