Top "Series" questions

A Series object represents a data series.

Dynamic Flot graph - show hide series by clicking on legend text or box on graph

I am working on dynamic flot graph with 3 series. My need is to hide/show series when clicked on legend. …

dynamic graph show-hide flot series
Python Reindex Producing Nan

Here is the code that I am working with: import pandas as pd test3 = pd.Series([1,2,3], index = ['a','b','c']) …

python pandas series
Are there functions to retrieve the histogram counts of a Series in pandas?

There is a method to plot Series histograms, but is there a function to retrieve the histogram counts to do …

pandas histogram series
Sort dataframe by string length

I want to sort by name length. There doesn't appear to be a key parameter for sort_values so I'm …

python pandas sorting series reindex
API for getting episode air date of series

Do you guys know any API that provides access to episode air time? I want to make a little app …

api series movies
Is there a query method or similar for pandas Series (pandas.Series.query())?

The pandas.DataFrame.query() method is of great usage for (pre/post)-filtering data when loading or plotting. It comes …

python pandas dataframe series method-chaining
Highcharts drilldown from a series

I have a chart that displays series data by year. eg 1011, 1112, 1213, 1415, and shows an actual and target for each year. …

highcharts series multiple-columns drilldown
What happens when you compare 2 pandas Series

I ran up against unexpected behavior in pandas when comparing two series. I wanted to know if this is intended …

python pandas compare series
Iterate over pandas series

I want to travel round the series index In [44]: type(ed1) Out[44]: pandas.core.series.Series In [43]: for _, row in …

python pandas series
how to convert a Series of arrays into a single matrix in pandas/numpy?

I somehow got a pandas.Series which contains a bunch of arrays in it, as the s in the code …

python pandas matrix multidimensional-array series