When I try to create an empty series:
my_series = pd.Series()
I am prompted to use an explicit datatype:
FutureWarning: The default dtype for empty Series will be 'object'
instead of 'float64' in a future version. Specify a dtype explicitly
to silence this warning.
In the series, I will store pandas timestamps, which I don't know what's the string to use for the dtype. I can't find it. How can I remove those annoying warnings?