CategoricalIndex.argmax()

CategoricalIndex.argmax(axis=None) [source] return a ndarray of the maximum argument indexer See also numpy.ndarray.argmax

DatetimeIndex.is_categorical()

DatetimeIndex.is_categorical() [source]

DatetimeIndex.dtype_str

DatetimeIndex.dtype_str = None

Series.iget()

Series.iget(i, axis=0) [source] DEPRECATED. Use .iloc[i] or .iat[i] instead

DataFrame.notnull()

DataFrame.notnull() [source] Return a boolean same-sized object indicating if the values are not null. See also isnull boolean inverse of notnull

Cookbook

This is a repository for short and sweet examples and links for useful pandas recipes. We encourage users to add to this documentation. Adding interesting links and/or inline examples to this section is a great First Pull Request. Simplified, condensed, new-user friendly, in-line examples have been inserted where possible to augment the Stack-Overflow and GitHub links. Many of the links contain expanded information, above what the in-line examples offer. Pandas (pd) and Numpy (np) are the only

Series.item()

Series.item() [source] return the first element of the underlying data as a python scalar

TimedeltaIndex.freq

TimedeltaIndex.freq = None

Panel.to_sparse()

Panel.to_sparse(*args, **kwargs) [source] NOT IMPLEMENTED: do not call this method, as sparsifying is not supported for Panel objects and will raise an error. Convert to SparsePanel

DataFrame.keys()

DataFrame.keys() [source] Get the ?info axis? (see Indexing for more) This is index for Series, columns for DataFrame and major_axis for Panel.