So this is more of a question than a problem i have.
I wanted to .append()
some pandas series' together and without thinking i just did total=series1+series2+series3
.
The length of each series is 2199902,171175, and 178989 respectively and sum(pd.isnull(i) for i in total)
= 2214596
P.S all 3 series' had no null values to start with, is it something to do with merging 3 series' of different lengths which creates missing values? Even if that is the case why aer 2,214,596 null values created?