I have a Pandas Series formed by list of terms:
my_series = pd.Series([['a','b','c'], ['a','d'], [], ['e']])
Is there a better/more elegant/faster way of get a set of unique terms than doing like this?:
lt = set()
for l in my_series.tolist():
lt = lt.union(l)