标签: python pandas dataframe
我有一个数据帧df,实际上是两个其他数据帧的完全合并。 df有大约30115777条记录。我想得到一个df的子集,其中网站与域匹配。我做了以下 -
df_subset=df[df.website == df.domain]
这会引发错误 -
Kernel appears to have died, will start automatically.
如何解决这个问题?