TimedeltaIndex.reshape()

TimedeltaIndex.reshape(*args, **kwargs) [source] NOT IMPLEMENTED: do not call this method, as reshaping is not supported for Index objects and will raise an error. Reshape an Index.

MultiIndex.dtype_str

MultiIndex.dtype_str = None

DatetimeIndex.drop_duplicates()

DatetimeIndex.drop_duplicates(*args, **kwargs) [source] Return Index with duplicate values removed Parameters: keep : {?first?, ?last?, False}, default ?first? first : Drop duplicates except for the first occurrence. last : Drop duplicates except for the last occurrence. False : Drop all duplicates. take_last : deprecated Returns: deduplicated : Index

DatetimeIndex.nlevels

DatetimeIndex.nlevels

Series.dt.to_pytimedelta()

Series.dt.to_pytimedelta() [source]

MultiIndex.ndim

MultiIndex.ndim return the number of dimensions of the underlying data, by definition 1

DataFrame.get_ftype_counts()

DataFrame.get_ftype_counts() [source] Return the counts of ftypes in this object.

DataFrame.values

DataFrame.values Numpy representation of NDFrame Notes The dtype will be a lower-common-denominator dtype (implicit upcasting); that is to say if the dtypes (even of numeric types) are mixed, the one that accommodates all will be chosen. Use this with care if you are not dealing with the blocks. e.g. If the dtypes are float16 and float32, dtype will be upcast to float32. If dtypes are int32 and uint8, dtype will be upcast to int32. By numpy.find_common_type convention, mixing int64 and uint

pandas.read_html()

pandas.read_html(io, match='.+', flavor=None, header=None, index_col=None, skiprows=None, attrs=None, parse_dates=False, tupleize_cols=False, thousands=', ', encoding=None, decimal='.', converters=None, na_values=None, keep_default_na=True) [source] Read HTML tables into a list of DataFrame objects. Parameters: io : str or file-like A URL, a file-like object, or a raw string containing HTML. Note that lxml only accepts the http, ftp and file url protocols. If you have a URL that starts wi

Index.max()

Index.max() [source] The maximum value of the object