我现在有一组站点,想要统计这些站点在csv某一行中出现的总次数
所以到底是一行还是一列
import pandas as pd df = read.csv("test.csv") df.groupby('a').count() #a表示你想统计的列名