Panel4D.ix

Panel4D.ix A primarily label-location based indexer, with integer position fallback. .ix[] supports mixed integer and label based access. It is primarily label based, but will fall back to integer positional access unless the corresponding axis is of integer type. .ix is the most general indexer and will support any of the inputs in .loc and .iloc. .ix also supports floating point label schemes. .ix is exceptionally useful when dealing with mixed positional and label based hierachical index

Panel4D.iterkv()

Panel4D.iterkv(*args, **kwargs) [source] iteritems alias used to get around 2to3. Deprecated

Panel4D.iteritems()

Panel4D.iteritems() [source] Iterate over (label, values) on info axis This is index for Series, columns for DataFrame, major_axis for Panel, and so on.

Panel4D.is_copy

Panel4D.is_copy = None

Panel4D.isnull()

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

Panel4D.interpolate()

Panel4D.interpolate(method='linear', axis=0, limit=None, inplace=False, limit_direction='forward', downcast=None, **kwargs) [source] Interpolate values according to different methods. Please note that only method='linear' is supported for DataFrames/Series with a MultiIndex. Parameters: method : {?linear?, ?time?, ?index?, ?values?, ?nearest?, ?zero?, ?slinear?, ?quadratic?, ?cubic?, ?barycentric?, ?krogh?, ?polynomial?, ?spline?, ?piecewise_polynomial?, ?from_derivatives?, ?pchip?, ?aki

Panel4D.iloc

Panel4D.iloc Purely integer-location based indexing for selection by position. .iloc[] is primarily integer position based (from 0 to length-1 of the axis), but may also be used with a boolean array. Allowed inputs are: An integer, e.g. 5. A list or array of integers, e.g. [4, 3, 0]. A slice object with ints, e.g. 1:7. A boolean array. A callable function with one argument (the calling Series, DataFrame or Panel) and that returns valid output for indexing (one of the above) .iloc will raise

Panel4D.iat

Panel4D.iat Fast integer location scalar accessor. Similarly to iloc, iat provides integer based lookups. You can also set using these indexers.

Panel4D.head()

Panel4D.head(n=5) [source]

Panel4D.gt()

Panel4D.gt(other, axis=None) [source] Wrapper for comparison method gt