Resampler.first()

Resampler.first(_method='first', *args, **kwargs) [source] Compute first of group values See also pandas.Series.groupby, pandas.DataFrame.groupby, pandas.Panel.groupby

Resampler.fillna()

Resampler.fillna(method, limit=None) [source] Fill missing values Parameters: method : str, method of resampling (?ffill?, ?bfill?) limit : integer, optional limit of how many values to fill See also Series.fillna, DataFrame.fillna

Resampler.ffill()

Resampler.ffill(limit=None) [source] Forward fill the values Parameters: limit : integer, optional limit of how many values to fill See also Series.fillna, DataFrame.fillna

Resampler.count()

Resampler.count(_method='count') [source] Compute count of group, excluding missing values See also pandas.Series.groupby, pandas.DataFrame.groupby, pandas.Panel.groupby

Resampler.bfill()

Resampler.bfill(limit=None) [source] Backward fill the values Parameters: limit : integer, optional limit of how many values to fill See also Series.fillna, DataFrame.fillna

Resampler.backfill()

Resampler.backfill(limit=None) [source] Backward fill the values Parameters: limit : integer, optional limit of how many values to fill See also Series.fillna, DataFrame.fillna

Resampler.asfreq()

Resampler.asfreq() [source] return the values at the new freq, essentially a reindex with (no filling)

Resampler.apply()

Resampler.apply(arg, *args, **kwargs) [source] Apply aggregation function or functions to resampled groups, yielding most likely Series but in some cases DataFrame depending on the output of the aggregation function Parameters: func_or_funcs : function or list / dict of functions List/dict of functions will produce DataFrame with column names determined by the function names themselves (list) or the keys in the dict Returns: Series or DataFrame See also transform Notes agg is an ali

Resampler.aggregate()

Resampler.aggregate(arg, *args, **kwargs) [source] Apply aggregation function or functions to resampled groups, yielding most likely Series but in some cases DataFrame depending on the output of the aggregation function Parameters: func_or_funcs : function or list / dict of functions List/dict of functions will produce DataFrame with column names determined by the function names themselves (list) or the keys in the dict Returns: Series or DataFrame See also transform Notes agg is an

Remote Data Access

DataReader The sub-package pandas.io.data is removed in favor of a separately installable pandas-datareader package. This will allow the data modules to be independently updated to your pandas installation. The API for pandas-datareader v0.1.1 is the same as in pandas v0.16.1. (GH8961) You should replace the imports of the following: from pandas.io import data, wb With: from pandas_datareader import data, wb Google Analytics The ga module provides a wrapper for Google Analytics API to s