Python Forum

Full Version: Date_Range Frequency List
You're currently viewing a stripped down version of our content. View the full version with proper formatting.

Hi,

I'm generating a very simple time series as follows:

import pandas as pd
dseries = pd.date_range('2015 Jan 01', periods=100, freq = 'd')
This works fine, but does anyone know how to find a complete list of choices for "freq"?
....And more generally, how do we find complete lists for input parameters? I couldn't find anything in the documentation.

Thanks!
http://pandas.pydata.org/pandas-docs/sta...et-aliases
in the docs, if you click on [Source] it will open the source in a Github repo. See lines 2176-2177