我刚刚开始使用Python For Data Analysis一书学习使用 Python 进行网络分析的分析,我对我在做一些 groupby 时遇到的异常感到困惑......这是我的情况。
我有一个已导入熊猫的 NetFlow 数据的 CSV。数据看起来像:
dt, srcIP, srcPort, dstIP, dstPort, bytes
2013-06-06 00:00:01.123, 123.123.1.1, 12345, 234.234.1.1, 80, 75
我已按如下方式导入和索引数据:
df = pd.read_csv('mycsv.csv')
df.index = pd.to_datetime(full_set.pop('dt'))
我想要的是每个时间段访问我的服务器的唯一 srcIP 的计数(我有几天的数据,我希望按日期、小时计算时间段)。我可以通过如下分组和绘图来获得整体流量图:
df.groupby([lambda t: t.date(), lambda t: t.hour]).srcIP.nunique().plot()
但是,我想知道总体流量是如何在我的服务器之间分配的。我的直觉是另外按“dstIP”列(只有 5 个唯一值)进行分组,但是当我尝试在 srcIP 上聚合时出现错误。
grouped = df.groupby([lambda t: t.date(), lambda t: t.hour, 'dstIP'])
grouped.sip.nunique()
...
Exception: Reindexing only valid with uniquely valued Index objects
所以,我的具体问题是:我怎样才能避免这个异常,以便创建一个流量聚合超过 1 小时块并且每个服务器有不同系列的图。
更一般地说,请让我知道我正在犯什么新错误。此外,数据没有常规的频率时间戳,我不想要采样数据,以防您的答案有任何差异。
编辑 1 这是我的 ipython 会话,与输入完全相同。除了错误中最深的几个调用外,输出被省略。
编辑 2 将 pandas 从 0.8.0 升级到 0.12.0 产生了一个更具描述性的异常,如下所示
import numpy as np
import pandas as pd
import time
import datetime
full_set = pd.read_csv('june.csv', parse_dates=True, index_col=0)
full_set.sort_index(inplace=True)
gp = full_set.groupby(lambda t: (t.date(), t.hour, full_set['dip'][t]))
gp['sip'].nunique()
...
/usr/local/lib/python2.7/dist-packages/pandas/core/groupby.pyc in _make_labels(self)
1239 raise Exception('Should not call this method grouping by level')
1240 else:
-> 1241 labs, uniques = algos.factorize(self.grouper, sort=self.sort)
1242 uniques = Index(uniques, name=self.name)
1243 self._labels = labs
/usr/local/lib/python2.7/dist-packages/pandas/core/algorithms.pyc in factorize(values, sort, order, na_sentinel)
123 table = hash_klass(len(vals))
124 uniques = vec_klass()
--> 125 labels = table.get_labels(vals, uniques, 0, na_sentinel)
126
127 labels = com._ensure_platform_int(labels)
/usr/local/lib/python2.7/dist-packages/pandas/hashtable.so in pandas.hashtable.PyObjectHashTable.get_labels (pandas/hashtable.c:12229)()
/usr/local/lib/python2.7/dist-packages/pandas/core/generic.pyc in __hash__(self)
52 def __hash__(self):
53 raise TypeError('{0!r} objects are mutable, thus they cannot be'
---> 54 ' hashed'.format(self.__class__.__name__))
55
56 def __unicode__(self):
TypeError: 'TimeSeries' objects are mutable, thus they cannot be hashed