How can I slice a numpy array with pandas timestamp?
dates = pd.date_range('1/1/2000', periods=18)
narray_dates=np.array(dates)
How can I slice the narray_dates with beginDate and endDate, which are pandas.Timestamp and can be without the narray_dates?
or is there similar way to solve the problem without numpy array?