I have a pandas dataframe built using (value_counts) function. When I call that dataframe in the body of the email it gets displayed as below
Updated view of the dataframe:
Exact match 169
1 Missing 121
2 Dropped by 1% 1
I would like to have the header (or the first row) to be empty or have a title but have the first row pushed to the second row in the dataframe. Given below is the syntax:
SumMail = pd.value_counts(Output1['Status'].values)
Given below is the view of Output1
dataframe:
Status
0 ABC Exact match
1 DEF Dropped by 1%
2 XYZ Exact match
Could anyone advice.