pandas is a library for PAN-el DA-ta analysis, i.e. multidimensional time series and cross-sectional data sets commonly found in statistics, experimental science results, econometrics, or finance.

learn more… | top users | synonyms

1
vote
1answer
14 views

Python PandasL Accessing values from second index in multi-indexed dataframe

I am not really sure how multi indexing works, so I maybe simply be trying to do the wrong things here. If I have a dataframe with Value A B 1 1 5.67 1 2 6.87 1 3 7.23 2 ...
0
votes
1answer
40 views

Append data in pandas

I can't figure out how to add data to a column in a panda data frame. I have four sensors that are sampling in four threads. I would like each sensor to append the current value to a specific column ...
0
votes
1answer
44 views

Importing data with Pandas

I am importing a query log as a table into a data frame with Pandas/Python as follows: import pandas as pd q_data_1 = pd.read_table('table_data.txt', skiprows=6, thousands=',') I get the following ...
3
votes
0answers
29 views

Using pandas DataFrame with incoming real time data

Which is the most recommended/pythonic way of handling live incoming data with pandas? Every few seconds I'm receiving a data point in the format below: {'time' :'2013-01-01 00:00:00', 'stock' : ...
0
votes
1answer
23 views

pandas series to multi-column html

I have a Pandas series (slice of larger DF corresponding to a single record) that I would like to display as html. While i can convert the Series to a DataFrame and use the .to_html() function this ...
2
votes
2answers
28 views

Updating a 2D database (CSV) with other databases in Python?

I basically have a file such as Name Day1 Day2 Day3 Abe 1 2 3 Ben 2 2 1 Cat 2 3 2 And I have "update files" in the form Name Day3 Day4 Abe 4 0 Dan 6 3 So I need to ...
1
vote
1answer
36 views

Importing a table into pandas and specifying the data type with missing values

I am using the read_table command in pandas/Python to import a tab-delimited text file. q_data_1 = pd.read_table('data.txt', skiprows=6, dtype={'numbers': np.float64}) ...but get AttributeError: ...
0
votes
0answers
23 views

Python error: Big-endian buffer not supported on little-endian compiler

When i run my python code (a very simple piece of code that was previously tested and no such error occured), i got this error: ValueError: Big-endian buffer not supported on little-endian compiler ...
1
vote
1answer
39 views

Random walk pandas

I am trying to quickly create a simulated random walk series in pandas. import pandas as pd import numpy as np dates = pd.date_range('2012-01-01', '2013-02-22') y2 = np.random.randn(len(dates))/365 ...
1
vote
2answers
17 views

Delete duplicate values in a row within a Pandas DataFrame (Python)

what is the expression to remove duplicate-values in any row within a pandas dataframe as follows....(note: first column is the index (date), followed by four columns of data). 1983-02-16 512 517 ...
1
vote
1answer
27 views

Python interaction in Pandas documentation

In this document http://pandas.pydata.org/pandas-docs/stable/pandas.pdf the python interaction is done very nicely. Where are the latex sources so I can see how this is done?
1
vote
2answers
35 views

How to get a value from a cell of a data frame?

I have constructed a condition that extract exactly one row from my data frame: d2 = df[(df['l_ext']==l_ext) & (df['item']==item) & (df['wn']==wn) & (df['wd']==1)] Now I would like to ...
1
vote
4answers
55 views

Converting strings to floats in a DataFrame

How to covert a DataFrame column containing strings and NaN values to floats. And there is another column whose values are strings and floats; how to convert this entire column to floats.
-3
votes
0answers
29 views

How to store data from an sql query in a HDF5 file using pytables in python [closed]

I am looking to store large amounts of numerical data from an sql query into a HDF5 file using python. I have just installed pytables after reading that this was the way to go and I have looked for ...
0
votes
1answer
39 views

pandas resample doesn't work with numpy 1.7

This code worked on my other computer with NumPy 1.6: import pandas as pd from pandas import DataFrame import numpy as np ...
0
votes
1answer
67 views

Reshaping tables in pandas

Below is an extract of a dataframe which I have created my merging multiple query log dataframes: keyword hits date average time 1 the cat ...
2
votes
2answers
20 views

How to access (multi)index of a Data Frame?

I have a data frame and use some of its columns to group by: grouped = df.groupby(['col1', 'col2']) Now I use mean function to get a new data frame object from the above created groupby object: ...
2
votes
1answer
24 views

How to change the x-axis when plotting groups from a pandas groupby combined in one plot

I am processing a chatlog and my data consists of timestamps, usernames and messages. My goal is to plot the number of messages per month for several users, so that I can compare when users were ...
1
vote
2answers
29 views

Rename pandas columns with datetime objects

I have a dataframe with unhelpful column names that I'd like to turn into datetimes. The current column names are Index([Market Median, Market Median, Market Median, Market Median, Market Median, ...
0
votes
2answers
26 views

Extracting rows for a Pandas dataframe in Python

I have imported a simple query log into a pandas dataframe in Python (see image), and would like to know what the most efficient way is to extract all of the rows that contain any given keyword that ...
0
votes
0answers
61 views

Python 2.7 - statsmodels - formatting and writing summary output

I'm doing logistic regression using pandas 0.11.0(data handling) and statsmodels 0.4.3 to do the actual regression, on Mac OSX Lion. I'm going to be running ~2,900 different logistic regression ...
1
vote
1answer
31 views

Python Pandas - Removing Rows From A DataFrame Based on a Previously Obtained Subset

I'm running Python 2.7 with the Pandas 0.11.0 library installed. I've been looking around a haven't found an answer to this question, so I'm hoping somebody more experienced than I has a solution. ...
1
vote
1answer
33 views

Repeated measures transform in Pandas

Let's say I have data set from a repeated measures study, which looks like this: control dose_high dose_low gender participant 0 4 6 4 m 1 1 3 ...
0
votes
1answer
55 views

Reference previous row when iterating through dataframe

Is there a simple way to reference the previous row when iterating through a dataframe? In the following dataframe I would like column B to change to 1 when A > 1 and remain at 1 until A < -1, ...
1
vote
2answers
41 views

getting specific median from data

I have a DataFrame with columns time, latitude, and longitude. It looks like this: >>> df.head() time latitude longitude 0 2011-12-16 08:09:07 42.386391 -71.013544 1 ...
1
vote
1answer
49 views

Groupby Clause in Pandas

I am trying to find the GroupBy Clause (in PANDAS DATAFRAME) which can do following things. InPlace Transformation. Add All the Money If possible then to get the Original Dataframe with Columns "A" ...
0
votes
1answer
34 views

Pandas stack unstack pivot hierarchical index - reshape dataframe

I have massaged a dataframe so it looks like this: 123 456 789 0AB CDE FGH ... ,,, I would like to transform it, so it looks like this: 123789CDE... 4560ABFGH,,, The pattern is this: 123 789 ...
2
votes
1answer
49 views

Assign to selection in pandas

I have a pandas dataframe and I want to create a new column, that is computed differently for different groups of rows. Here is a quick example: import pandas as pd data = {'foo': list('aaade'), ...
0
votes
1answer
25 views

how to get the average of dataframe column values

A B DATE 2013-05-01 473077 71333 2013-05-02 35131 62441 2013-05-03 727 27381 2013-05-04 481 1206 2013-05-05 ...
0
votes
1answer
18 views

Pandas: process cell dependencies

I'm new to Pandas so please bear with me; I have a dataframe A: one two three 0 1 5 9 1 2 6 10 2 3 7 11 3 4 8 12 And a dataframe B, which represents ...
0
votes
1answer
28 views

Using boolean masks in Pandas

This is probably a trivial query but I can't work it out. Essentially, I want to be able to filter out noisy tweets from a dataframe below <class 'pandas.core.frame.DataFrame'> Int64Index: ...
1
vote
1answer
41 views

Pandas group by operations on a data frame

I have a pandas data frame like the one below. UsrId JobNos 1 4 1 56 2 23 2 55 2 41 2 5 3 78 1 25 3 1 I group by the data frame ...
0
votes
1answer
24 views

In PANDAS , how to get it's index of a known value?

I like to use pandas as my data analysis tool . Now a problem plaguing me , such as this example: In [148]: a = pd.DataFrame(np.arange(10).reshape(5,2),columns=['c1','c2']) In [149]: a Out[149]: ...
0
votes
0answers
44 views

pandas dataframe.drop(col,axis=1) does not drop column from column.levels in multiindex dataframe

I have a multiindex dataframe from which I am dropping columns using df.drop(col,axis=1). Then, I am looking through column.levels[0] and doing some operations on all the columns. However, when I try ...
0
votes
0answers
74 views

Loop over lists and concat in pd.dataframe

I'm trying to mulitply a DataFrame with a numpy array as follows: import numpy as np from pandas import* import pandas as pd C = np.arange(30).reshape(5, 6) df = ...
1
vote
1answer
31 views

Pandas: Create new dataframe that averages duplicates from another dataframe

Say I have a dataframe my_df with column duplicates, e..g foo bar foo hello 0 1 1 5 1 1 2 5 2 1 3 5 I would like to create another dataframe that averages the duplicates: foo bar ...
0
votes
1answer
31 views

MySQL `Load Data Infile Local` fails for .csv unless I open and save the file first. How can I avoid this step?

I generate .csv files using a python script by writing a pandas DataFrame to_csv, using utf8 encoding. consEx.to_csv(os.path.join(base_dir, "Database/Tables/Consumption ...
2
votes
2answers
40 views

Specifying date format when converting with pandas.to_datetime

I have data in a csv file with dates stored as strings in a standard UK format - %d/%m/%Y - meaning they look like: 12/01/2012 30/01/2012 The examples above represent 12 January 2012 and 30 January ...
1
vote
1answer
45 views

Pandas Panel Slicing - Improving Performance

All, I'm currently using a panel in pandas to hold my data source. My program is a simple backtesting engine. It is only for personal amusement, however, I'm getting stuck in optimizing it. The ...
1
vote
3answers
48 views

Horizontal stacked bar chart in Matplotlib

I'm trying to create a horizontal stacked bar chart using matplotlib but I can't see how to make the bars actually stack rather than all start on the y-axis. Here's my testing code. fig = ...
1
vote
1answer
55 views

Pandas df.head() Error

I'm having a basic problem with df.head(). When the function is executed, it usually displays a nice HTML formatted table of the top 5 values, but now it only appears to slice the dataframe and ...
3
votes
0answers
52 views

Merge on single level of MultiIndex

Is there any way to merge on a single level of a MultiIndex without resetting the index? I have a "static" table of time-invariant values, indexed by an ObjectID, and I have a "dynamic" table of ...
0
votes
2answers
63 views

pandas convert strings to float for multiple columns in dataframe

I'm new to pandas and trying to figure out how to convert multiple columns which are formatted as strings to float64's. Currently I'm doing the below, but it seems like apply() or applymap() should ...
1
vote
1answer
58 views

HDF5 taking more space than CSV?

Consider the following example: Prepare the data: import string import random import pandas as pd matrix = np.random.random((100, 3000)) my_cols = [random.choice(string.ascii_uppercase) for x in ...
0
votes
0answers
22 views

Unable to save DataFrame to HDF5 (“object header message is too large”)

I have a DataFrame in Pandas: In [7]: my_df Out[7]: <class 'pandas.core.frame.DataFrame'> Int64Index: 34 entries, 0 to 0 Columns: 2661 entries, airplane to zoo dtypes: float64(2659), object(2) ...
-2
votes
2answers
97 views

Printing all values to a .txt file in Python

I wrote a small script that pulls some unnecessary columns from a text file that I'm working with. I'm not sure how to get it to print to a text file without loss of data. import pandas as pd from ...
1
vote
1answer
30 views

Creating multiple new columns using one function in Pandas

I know that this is probably very simple but I have been trying to work this out for a while, and I need it for quite a few functions. I have a DataFrame with 2 columns, both with share price data. ...
1
vote
1answer
45 views

Iteratively writing to HDF5 Stores in Pandas

Pandas has the following examples for how to store Series, DataFrames and Panelsin HDF5 files: Prepare some data: In [1142]: store = HDFStore('store.h5') In [1143]: index = date_range('1/1/2000', ...
3
votes
1answer
157 views

Pandas: reshaping data

I have a pandas Series which presently looks like this: 14 [Yellow, Pizza, Restaurants] ... 160920 [Automotive, Auto Parts & Supplies] 160921 [Lighting Fixtures & ...
1
vote
1answer
34 views

Sublists in pandas

I've got a Pandas DataFrame, one of the columns of which looks like this: 0 {u'funny': 2, u'useful': 0, u'cool': 0} 1 {u'funny': 370, u'useful': 487, u'cool': 296} 2 ...

1 2 3 4 5 34