I want to generate a pandas series with null values, with int type. I use this:
import pandas as pd
pd.Series(None, index=[1, 2, 3], dtype=int)
And it returns
1 0
2 0
3 0
dtype: int64
What can I do for it to return a series whose values are null?