我們有我們存儲所有的軟件SQL表,在開始時間在我們的電腦艦隊的靴子:熊貓數據框中特別計數
class Autoruns(Base):
"""Table that stores all of the autoruns."""
__tablename__ = 'autoruns'
id = Column(Integer, primary_key=True, autoincrement=True)
# Table keys
machine_id = Column(String, ForeignKey("machines.id"), nullable=False)
type = Column(String)
path = Column(String)
entry = Column(String)
data = Column(String)
md5_hash = Column(String)
is_signed = Column(Boolean)
# Unique constraint
__table_args__ = (
UniqueConstraint('machine_id', 'type', 'path', 'entry', 'data', 'md5_hash', 'is_signed'),)
列machine_id
是指向的IP地址的外鍵整數自動運行的機器。
如果將自動運行定義爲['type', 'path', 'entry', 'data', 'md5_hash', 'is_signed']
,那麼我們如何使用Pandas Dataframe來計算有多少臺機器具有特定的自動運行?
我們希望產生的回報是熊貓數據框與一個名爲count
新列包含機器自動運行這個發現在數量列出的所有自動運行(減去machine_id
和id
)。
非常感謝您的幫助。
親切的問候, 亞歷山大