convert the series into data frame and give the naems for the colmn sin pandas code example
Example 1: series.Series to dataframe
df = pd.DataFrame([s])
print (df)
product_id_y count
6159402 1159730 1
Example 2: series to dataframe
pd.DataFrame({'email':sf.index, 'list':sf.values})