SeriesHE¶
Detail: SeriesHE
SeriesHE: Constructor¶
Detail: SeriesHE: Constructor
|
Initializer. Args: values: An iterable of values to be aligned with the supplied… |
|
|
Concatenate multiple Series into a new Series. Args: containers: Iterable of Ser… |
|
|
Produce a Series with a hierarchical index from an iterable of pairs of labels,… |
|
|
Series construction from a dictionary, where the first pair value is the index a… |
|
|
Create a Series from a single element. The size of the resultant container will… |
|
|
Series construction from an iterator or generator of pairs, where the first pair… |
|
|
Return a new Series made by overlaying containers, aligned values are filled wit… |
|
|
Given a Pandas Series, return a Series. Args: value: Pandas Series. * index_cons… |
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression
SeriesHE: Exporter¶
Detail: SeriesHE: Exporter
|
Return a Frame view of this Series. As underlying data is immutable, this is a n… |
|
|
Return FrameGO view of this Series. As underlying data is immutable, this is a n… |
|
|
Return FrameHE view of this Series. As underlying data is immutable, this is a n… |
|
|
Return an HTML table representation of this Series using standard TABLE, TR, and… |
|
|
Return a complete HTML representation of this Series using the DataTables JS lib… |
|
|
Return a tuple of tuples, where each inner tuple is a pair of index label, value… |
|
|
Return a Pandas Series. Returns: pandas.Series |
|
|
Return a Series from this SeriesHE. |
|
|
Return a SeriesHE from this Series. |
|
|
Open an interactive VisiData session. |
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression
SeriesHE: Attribute¶
Detail: SeriesHE: Attribute
|
bool(x) -> bool Returns True when the argument x is true, False otherwise. The b… |
|
|
Transpose. For a 1D immutable container, this returns a reference to self. Retur… |
|
|
Return the dtype of the underlying NumPy array. Returns: numpy.dtype |
|
|
The index instance assigned to this container. Returns: Index |
|
|
The memory location, represented as an integer, of the underlying NumPy array. |
|
|
A hashable label attached to this container. Returns: Hashable |
|
|
Return the total bytes of the underlying NumPy array. Returns: int |
|
|
Return the number of dimensions, which for a Series is always 1. Returns: int |
|
|
Return a tuple describing the shape of the underlying NumPy array. Returns: Tupl… |
|
|
Return the size of the underlying NumPy array. Returns: int |
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression
SeriesHE: Method¶
Detail: SeriesHE: Method
|
Support the __array__ interface, returning a 1D array of values. |
|
|
Support for NumPy elements or arrays on the left hand of binary operators. |
|
|
Raises ValueError to prohibit ambiguous use of truethy evaluation. |
|
|
||
|
Length of values. |
|
|
Return a Series rounded to the given decimals. Negative decimals round to the le… |
|
|
Logical and over values along the specified axis. Args: axis: Axis, defaulting t… |
|
|
Logical or over values along the specified axis. Args: axis: Axis, defaulting to… |
|
|
Return a Series with type determined by dtype argument. Note that for Series, th… |
|
|
Apply a clip operation to this Series. Note that clip operations can be applied… |
|
|
Return the count of non-NA, non-falsy, and/or unique elements. Args: skipna: ski… |
|
|
Return the index-aligned covariance to the supplied Series. Args: ddof: Delta de… |
|
|
Return the cumulative product over the specified axis. Args: axis: Axis, default… |
|
|
Return the cumulative sum over the specified axis. Args: axis: Axis, defaulting… |
|
|
Return a Series with duplicated values removed. Args: exclude_first: Boolean to… |
|
|
Return a new Series after removing values of falsy. |
|
|
Return a new Series after removing values of NaN or None. |
|
|
Return a same-sized Boolean Series that shows True for all values that are dupli… |
|
|
Return a bool from comparison to any other object. Args: compare_name: Include e… |
|
|
Return a new Series after replacing falsy values with the supplied value. The va… |
|
|
Return a new Series after feeding backward the last non-falsy observation across… |
|
|
Return a new Series after feeding forward the last non-falsy observation across… |
|
|
Return a new Series after filling leading (and only leading) falsy values with t… |
|
|
Return a new Series after filling trailing (and only trailing) falsy values with… |
|
|
Return a new Series after replacing NA (NaN or None) with the supplied value. Th… |
|
|
Return a new Series after feeding backward the last non-null (NaN or None) obser… |
|
|
Return a new Series after feeding forward the last non-null (NaN or None) observ… |
|
|
Return a new Series after filling leading (and only leading) null (NaN or None)… |
|
|
Return a new Series after filling trailing (and only trailing) null (NaN or None… |
|
|
Return a Series consisting only of the top elements as specified by count. Args:… |
|
|
Return the integer index corresponding to the maximum value. Args: skipna: if Tr… |
|
|
Return the integer index corresponding to the minimum value found. Args: skipna:… |
|
|
Given a sorted Series, return the iloc (integer) position(s) at which insertion… |
|
|
Create a new Series by inserting a Series at the position after the label specif… |
|
|
Create a new Series by inserting a Series at the position before the label speci… |
|
|
Return a same-indexed, Boolean Series indicating which values are falsy. |
|
|
Return a same-sized Boolean Series that shows if the same-positioned element is… |
|
|
Return a same-indexed, Boolean Series indicating which values are NaN or None. |
|
|
Return the label corresponding to the maximum value found. Args: skipna: if True… |
|
|
Return the label corresponding to the minimum value found. Args: skipna: if True… |
|
|
Given a sorted Series, return the loc (label) position(s) at which insertion in… |
|
|
Return the maximum along the specified axis. Args: axis: Axis, defaulting to axi… |
|
|
Return the mean along the specified axis. Args: axis: Axis, defaulting to axis 0… |
|
|
Return the median along the specified axis. Args: axis: Axis, defaulting to axis… |
|
|
Return the minimum along the specified axis. Args: axis: Axis, defaulting to axi… |
|
|
Return a same-indexed, Boolean Series indicating which values are falsy. |
|
|
Return a same-indexed, Boolean Series indicating which values are NaN or None. |
|
|
Return the product along the specified axis. Args: axis: Axis, defaulting to axi… |
|
|
Rank values as compactly as possible, where ties get the same value, and ranks a… |
|
|
Rank values where tied values are assigned the maximum ordinal rank; ranks are p… |
|
|
Rank values where tied values are assigned the mean of the ordinal ranks; ranks… |
|
|
Rank values where tied values are assigned the minimum ordinal rank; ranks are p… |
|
|
Rank values distinctly, where ties get distinct values that maintain their order… |
|
|
Return a new Series with new a hierarchy based on the supplied depth_map. |
|
|
Return a new Series with labels defined by the provided index. The size and orde… |
|
|
Return a new Series with transformed labels on the index. The size and ordering… |
|
|
Return a new Series, where an IndexHierarchy (if defined) is replaced with a fla… |
|
|
Return a new Series, adding a new root level to an existing IndexHierarchy, or c… |
|
|
Return a new Series, dropping one or more levels from a either the root or the l… |
|
|
Return a new Series with an updated name attribute. |
|
|
Return a Series with values rotated forward and wrapped around the index (with a… |
|
|
Randomly (optionally made deterministic with a fixed seed) extract items from th… |
|
|
Return a Series with values shifted forward on the index (with a positive shift)… |
|
|
Return a new Series ordered by the sorted Index. Args: * ascending: Boolean, or… |
|
|
Return a new Series ordered by the sorted values. Args: * ascending: If True, so… |
|
|
Return the standard deviaton along the specified axis. Args: axis: Axis, default… |
|
|
Sum values along the specified axis. Args: axis: Axis, defaulting to axis 0. ski… |
|
|
Return a Series consisting only of the bottom elements as specified by count. s… |
|
|
Transpose. For a 1D immutable container, this returns a reference to self. Retur… |
|
|
Return a NumPy array of unique values. Returns: numpy.ndarray |
|
|
Return the variance along the specified axis. Args: axis: Axis, defaulting to ax… |
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression
SeriesHE: Dictionary-Like¶
Detail: SeriesHE: Dictionary-Like
|
Inclusion of value in index labels. Returns: bool |
|
|
Iterator of index labels, same as Series.keys. Returns: Iterator[Hashasble] |
|
|
Returns a reverse iterator on the series’ index. Returns: Index |
|
|
Return the value found at the index key, else the default if the key is not foun… |
|
|
Iterator of pairs of index label and value. Returns: Iterator[Tuple[Hashable, An… |
|
|
Iterator of index labels. Returns: Iterator[Hashable] |
|
|
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression
SeriesHE: Display¶
Detail: SeriesHE: Display
A Frame documenting the interface of this class. |
||
|
||
|
Return str(self). |
|
|
Return a Display, capable of providing a string representation. Args: config: A… |
|
|
Maximize vertical presentation. Return a Display, capable of providing a string… |
|
|
Maximize horizontal presentation. Return a Display, capable of providing a strin… |
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression
SeriesHE: Assignment¶
Detail: SeriesHE: Assignment
|
Assign the value in the position specified by the selector. The name attribute i… |
|
|
Provide a function to apply to the assignment target, and use that as the assign… |
|
|
Assign the value in the position specified by the selector. The name attribute i… |
|
|
Provide a function to apply to the assignment target, and use that as the assign… |
|
|
Assign the value in the position specified by the selector. The name attribute i… |
|
|
Provide a function to apply to the assignment target, and use that as the assign… |
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression
SeriesHE: Selector¶
Detail: SeriesHE: Selector
|
Label-based selection. |
|
|
||
|
||
|
Label-based selection. |
|
|
||
|
||
|
Label-based selection. |
|
|
||
|
||
|
Selector of values by label. Args: key: A loc selector, either a label, a list o… |
|
|
Interface for position-based selection. |
|
|
Interface for label-based selection. |
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression
SeriesHE: Iterator¶
Detail: SeriesHE: Iterator
|
Iterator of elements. |
|
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Iterator of label, element pairs. |
|
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Iterator of Series, where each Series matches unique values. |
|
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Iterator of Series, where each Series matches unique values. |
|
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
||
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
||
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
||
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
||
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
||
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
||
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
||
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
||
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
||
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
||
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression
SeriesHE: Operator Binary¶
Detail: SeriesHE: Operator Binary
|
||
|
||
|
Return True if other is a Series with the same labels, values, and name. Contain… |
|
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
Return False if other is a Series with the same labels, values, and name. Contai… |
|
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression
SeriesHE: Operator Unary¶
Detail: SeriesHE: Operator Unary
|
||
|
||
|
||
|
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression
SeriesHE: Accessor Datetime¶
Detail: SeriesHE: Accessor Datetime
|
Return the year of each element. |
|
|
Return the month of each element, between 1 and 12 inclusive. |
|
|
Return the day of each element, between 1 and the number of days in the given mo… |
|
|
Return the hour of each element, between 0 and 24. |
|
|
Return the minute of each element, between 0 and 60. |
|
|
Return the second of each element, between 0 and 60. |
|
|
Return the day of the week as an integer, where Monday is 0 and Sunday is 6. |
|
|
Return the quarter of the year as an integer, where January through March is qua… |
|
|
Return Boolean indicators if the day is the month end. |
|
|
Return Boolean indicators if the day is the month start. |
|
|
Return Boolean indicators if the day is the year end. |
|
|
Return Boolean indicators if the day is the year start. |
|
|
Return Boolean indicators if the day is the quarter end. |
|
|
Return Boolean indicators if the day is the quarter start. |
|
|
Return a time.struct_time such as returned by time.localtime(). |
|
|
Return a string representing the date in ISO 8601 format, YYYY-MM-DD. |
|
|
Return a datetime.date object from an ISO 8601 format. |
|
|
Return a string representing the date, controlled by an explicit format string. |
|
|
Return a Python datetime object from parsing a string defined with format. |
|
|
Return a Python date object from parsing a string defined with format. |
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression
SeriesHE: Accessor String¶
Detail: SeriesHE: Accessor String
|
Return a container with the provided selection or slice of each element. |
|
|
Return a container with only the first character of each element capitalized. |
|
|
Return a container with its elements centered in a string of length width. |
|
|
Returns a container with the number of non-overlapping occurrences of substring… |
|
|
Apply str.decode() to each element. Elements must be bytes. |
|
|
Apply str.encode() to each element. Elements must be strings. |
|
|
Returns a container with the number of non-overlapping occurrences of substring… |
|
|
For each element, return the lowest index in the string where substring sub is f… |
|
|
Like find, but raises ValueError when the substring is not found. |
|
|
Returns true for each element if all characters in the string are alphanumeric a… |
|
|
Returns true for each element if all characters in the string are alphabetic and… |
|
|
For each element, return True if there are only decimal characters in the elemen… |
|
|
Returns true for each element if all characters in the string are digits and the… |
|
|
Returns true for each element if all cased characters in the string are lowercas… |
|
|
For each element in self, return True if there are only numeric characters in th… |
|
|
Returns true for each element if there are only whitespace characters in the str… |
|
|
Returns true for each element if the element is a titlecased string and there is… |
|
|
Returns true for each element if all cased characters in the string are uppercas… |
|
|
Return a container with its elements ljusted in a string of length width. |
|
|
Return the length of the string. |
|
|
Return an array with the elements of self converted to lowercase. |
|
|
For each element, return a copy with the leading characters removed. |
|
|
Partition each element around sep. |
|
|
Return a container with its elements replaced in a string of length width. |
|
|
For each element, return the highest index in the string where substring sub is… |
|
|
Like rfind, but raises ValueError when the substring sub is not found. |
|
|
Return a container with its elements rjusted in a string of length width. |
|
|
Partition (split) each element around the right-most separator. |
|
|
For each element, return a tuple of the words in the string, using sep as the de… |
|
|
For each element, return a copy with the trailing characters removed. |
|
|
For each element, return a tuple of the words in the string, using sep as the de… |
|
|
Returns a container with the number of non-overlapping occurrences of substring… |
|
|
For each element, return a copy with the leading and trailing characters removed… |
|
|
Return a container with uppercase characters converted to lowercase and vice ver… |
|
|
Return a container with uppercase characters converted to lowercase and vice ver… |
|
|
Return a container with uppercase characters converted to lowercase and vice ver… |
|
|
Return the string left-filled with zeros. |
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression
SeriesHE: Accessor Fill Value¶
Detail: SeriesHE: Accessor Fill Value
|
Label-based selection where labels not specified will define a new container con… |
|
|
Label-based selection where labels not specified will define a new container con… |
|
|
Interface for using binary operators with one-dimensional sequences, where the o… |
|
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression
SeriesHE: Accessor Regular Expression¶
Detail: SeriesHE: Accessor Regular Expression
|
Scan through string looking for the first location where this regular expression… |
|
|
If zero or more characters at the beginning of string match this regular express… |
|
|
If the whole string matches this regular expression, return True, else False. No… |
|
|
Split string by the occurrences of pattern. If capturing parentheses are used in… |
|
|
Return all non-overlapping matches of pattern in string, as a tuple of strings…. |
|
|
Return the string obtained by replacing the leftmost non-overlapping occurrences… |
|
|
Perform the same operation as sub(), but return a tuple (new_string, number_of_s… |
SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression