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

0
votes
0answers
5 views

Pandas: Period object to abstract from time

I have the following DataFrame: df = pd.DataFrame({ 'Trader': 'Carl Mark Carl Joe Mark Carl Max Max'.split(), 'Share': list('ABAABAAA'), 'Quantity': [5,2,5,10,1,5,2,1] }, index=[ ...
0
votes
0answers
5 views

Do non-unique indexes provide any performance advantage in pandas?

From the pandas documentation, I've gathered that unique-valued indices make certain operations efficient, and that non-unique indices are occasionally tolerated. From the outside, it doesn't look ...
1
vote
1answer
24 views

Pandas: What are the cases when count returned by DataFrame describe is a floating point

When describing my Pandas dataframe: i get the following result: Mains_1_Power Mains_2_Power count 17.000000 17.000000 mean 57.063528 200.428607 std 67.605151 ...
0
votes
1answer
29 views

Combine sparsely populated columns of the same data in pandas

I have the following dataframe and I would like to combine columns 2,3,4,5 into just one column. | 0 | 1 | 2 | 3 | 4 | 5 | +-----+-----+-----+-----+-----+-----+ | 90 | 90 | A | | ...
0
votes
1answer
55 views

Concatenating and sorting thousands of CSV files

I have thousands of csv files in disk. Each of them with a size of approximately ~10MB (~10K columns). Most of these columns hold real (float) values. I would like to create a dataframe by ...
1
vote
1answer
29 views

pandas: how to select by partial label in index

Having a series like this: ds = Series({'wikipedia':10,'wikimedia':22,'wikitravel':33,'google':40}) google 40 wikimedia 22 wikipedia 10 wikitravel 33 dtype: int64 I would like to ...
1
vote
2answers
42 views

Deleting all columns except a few python-pandas

Say I have a data table 1 2 3 4 5 6 .. n A x x x x x x .. x B x x x x x x .. x C x x x x x x .. x And I want to slim it down so that I only have, say, columns 3 ...
2
votes
3answers
49 views

Getting data from .csv file python (panda)

I am working on a python project where I have a .csv file like this. freq,ae,cl,ota 825,1,2,3 835,4,5,6 850,10,11,12 880,22,23,24 910,46,47,48 960,94,95,96 1575,190,191,192 1710,382,383,384 ...
1
vote
1answer
18 views

Deleting a Row from a Time Indexed Dataframe in Python / Pandas

I'm trying to delete a row in a Python Dataframe by simply passing the date and time. The Dataframe has the following structure: Date_Time Price1 Price2 Price3 ...
0
votes
1answer
43 views

pandas: efficient way to make calculations within groups

I am working with transactional data like this: Purchase data | Buyer | Product | Quantity -------------------------------------------------- 2013-01-01 13:00:00 | Carl | A | 5 ...
-2
votes
0answers
49 views

Why accessing larger index in pandas series takes longer? [closed]

I have a function that I would like to apply element-wise to several series. def my_fun(s1, s2, p1, p2, p3, angle_cutoff, s_cutoff): a1 = xy2angle(p1, s1) a2 = xy2angle(p2, s2) if ...
4
votes
2answers
65 views

Is there universal if function in numpy?

I have three series. I need to do the following operation element-wise: Compare values from the first and second series. If first is larger take arc-sinus of the element from the third series. ...
0
votes
1answer
25 views

How to define a function in pandas that takes series as an argument?

I have a data frame and I want to create a new column whose values are defined by values located in other columns (in the same row). It is very simple if I use simple operations (+, -, * and even ...
1
vote
2answers
54 views

What is the most idiomatic way to index an object with a boolean array in pandas?

I am particularly talking about Pandas version 0.11 as I am busy replacing my uses of .ix with either .loc or .iloc. I like the fact that differentiating between .loc and .iloc communicates whether I ...
1
vote
1answer
35 views

Stop pandas plot from doing new x-axis layout

I have a problem of an automatic x-axis rescaling happening when I do the following: plot column 1 plot column 1 where column 2 is notnull, but with different style. The second plot keeps ...
1
vote
1answer
30 views

Python 3.3 pandas, pip-3.3

So, I'm trying to install pandas for Python 3.3 and have been having a really hard time- between Python 2.7 and Python 3.3 and other factors. Some pertinent information: I am running Mac OSX Lion ...
0
votes
0answers
42 views

Reading Files in HDFS (Hadoop filesystem) directories into a Pandas dataframe

I am generating some delimited files from hive queries into multiple HDFS directories. As the next step, I would like to read the files into a single pandas dataframe in order to apply standard ...
1
vote
1answer
23 views

Appending to an empty data frame in Pandas?

Is it possible to append to an empty data frame that doesn't contain any indices or columns? I have tried to do this, but keep getting an empty dataframe at the end. e.g. df = pd.DataFrame() data = ...
0
votes
2answers
46 views

Having issues reading a .csv file python-pandas

I'm trying to read this .txt file in pandas and this is my result. I thought (naively) that I was getting a hang of this stuff last night, but I'm wrong apparently. If I simply run rebull = ...
2
votes
1answer
49 views

Pandas Convert 'NA' to NaN

I just picked up Pandas to do with some data analysis work in my biology research. Turns out one of the proteins I'm analyzing is called 'NA'. I have a matrix with pairwise 'HA, M1, M2, NA, NP...' on ...
0
votes
2answers
43 views

rename index of a pandas dataframe

I have a pandas dataframe whose indices look like: df.index ['a_1', 'b_2', 'c_3', ... ] I want to rename these indices to: ['a', 'b', 'c', ... ] How do I do this without specifying a dictionary ...
-2
votes
1answer
43 views

Pivoting duplicate columns into rows

This is the input file I have from reading a csv file: Sample Info D3S1358 1 D3S1358 2 TH01 1 TH01 2 D21S11 1 D21S11 2 D21S11 3 TEST_646 17 ...
-1
votes
0answers
13 views

Pandas.io write_frame throws UnicodeEncodeError

I am trying to write a frame (imported via pd.ExcelFile.parse()) to MySQL as follows: sql.write_frame(EMCompanies, con=db, name='EMCompanies', if_exists='append', flavor='mysql') Unfortunately, I'm ...
0
votes
1answer
34 views

pandas SparseDataFrame insertion

i would like to create a pandas SparseDataFrame with the Dimonson 250.000 x 250.000. In the end my aim is to come up with a big adjacency matrix. So far that is no problem to create that data frame: ...
0
votes
1answer
27 views

merge 2 dataframes in Pandas: join on some columns, sum up others

I want to merge two dataframes on specific columns (key1, key2) and sum up the values for another column (value). >>> df1 = pd.DataFrame({'key1': range(4), 'key2': range(4), 'value': ...
2
votes
1answer
53 views

Vectorized DataFrame Python-pandas?

I'm trying to figure out how to print a row given a known entry in a column within my data frame much like this question. However, this wasn't working for my DataFrame. In [10]: df Out[10: A B ...
1
vote
1answer
28 views

Python-pandas with large/disordered text files

I have a large (for my experience level anyway) text file of astrophysical data and I'm trying to get a handle on python/pandas. As a noob to python, it's comin' along slowly. Here is a sample of the ...
2
votes
1answer
42 views

Efficiently creating additional columns in a pandas DataFrame using .map()

I am analyzing a data set that is similar in shape to the following example. I have two different types of data (abc data and xyz data): abc1 abc2 abc3 xyz1 xyz2 xyz3 0 1 2 2 ...
4
votes
1answer
53 views

Extra Bin with Pandas Resample

I've got a pandas data frame defined like this: last_4_weeks_range = pandas.date_range( start=datetime.datetime(2001, 5, 4), periods=28) ...
0
votes
1answer
45 views

Reading binary data into pandas

I have some binary data and I was wondering how I can load that into pandas. Can I somehow load it specifying the format it is in, and what the individual columns are called? Edit: Format is int, ...
1
vote
1answer
62 views

Easy way to set the position of x-axis in pandas?

I have a chart, created in pandas, where I've set the y-axis to range from -100 to -100. Is there an easy way to have the x-axis cross the y-axis at y=0, instead of crossing at y=-100 (or, how to ...
0
votes
1answer
49 views

What is the Python (numpy or scipy or Pandas) equivalent for R's adjboxStats function?

I do use R to get the outliers for data set and I do use this snippet in R and it works like it's advertised to! library("robustbase") adjboxStats(c(11232.1, 234.2, 3445532344.3, 34302.3, 203.9, ...
1
vote
2answers
67 views

Make a multiline plot from .CSV file in matplotlib

I've been trying for weeks to plot 3 sets of (x, y) data on the same plot from a .CSV file, and I'm getting nowhere. My data was originally an Excel file which I have converted to a .CSV file and have ...
-2
votes
1answer
48 views

How to prepare input for time delay neural network in Python? [closed]

Task 1) Let X = [x_0, x_2, ..., x_t] be a numpy.array, how do you take pieces of X and create a new list addressing indexes, say for example: Y = [[x_1, ... ,x_(n-1)], [x_n, ..., x_(2n-1)], ...
1
vote
1answer
65 views

Pandas: fancy indexing a dataframe

I have a Pandas dataframe, df1, that is a year-long 5 minute timeseries with columns A-Z. df1.shape (105121, 26) df1.index <class 'pandas.tseries.index.DatetimeIndex'> [2002-01-02 00:00:00, ...
0
votes
1answer
30 views

How to count number of index or Null values in Pandas dataframe group

Its always the things that seem easy that bug me. I am trying to get a count of the number of non-null values of some variables in a Dataframe grouped by month and year. So I can do this which works ...
1
vote
2answers
42 views

Pandas: frequency of an element in two groups of columns

I have a DataFrame data laid out like this: Observation A_1 A_2 A_3 B_1 B_2 B_3 Obs1 yes no yes no no no Obs2 no no no yes ...
0
votes
1answer
59 views

about concat in pandas : using row data to create new columns

The same question has been posted on pydata google group. I want to do a custom concat i.e using the rows in a group by object to create new cols. Here is an contrived example: Input data frame ...
1
vote
1answer
23 views

Pandas: Re-assigning values to a 'block' of a Data frame

Probably a trivial problem, but I need to understand what's going on here (and how to fix it). Suppose I have a dataframe with columns 'a' and 'b', as follows: f = pandas.DataFrame({'a':[1,2,3,4,5], ...
0
votes
2answers
40 views

How does one save python panda scatter_matrix as a figure?

I have a dataframe that forms a scatter_matrix, but I can't seem to save the image. How do I save it? import pandas as pd my_scatter = pd.scatter_matrix(my_dataframe, diagonal="kde") How do I save ...
0
votes
2answers
43 views

Comparing rows of pandas dataframe (rows have some overlapping values)

I have a pandas dataframe with 21 columns. I am focusing on a subset of rows that have exactly same column data values except for 6 that are unique to each row. I don't know which column headings ...
-1
votes
2answers
106 views

Python perform operation in string

So I'm trying to pass a variable operation (user defined) into a function and am having trouble trying to find a good way of doing it. All I can think of to do is hard code all the options into the ...
1
vote
0answers
56 views

How to create bar chart with secondary_y from dataframe

I want to create a bar chart of two series (say 'A' and 'B') contained in a Pandas dataframe. If I wanted to just plot them using a different y-axis, I can use secondary_y: df = ...
0
votes
1answer
50 views

Python pandas plot is a no-show

When I run this code import pandas as pd import numpy as np def add_prop(group): births = group.births.astype(float) group['prop'] = births/births.sum() return group pieces = [] columns ...
1
vote
1answer
46 views

Pandas: Using Unix epoch timestamp as Datetime index

My application involves dealing with data (contained in a CSV) which is of the following form: Epoch (number of seconds since Jan 1, 1970), Value 1368431149,20.3 1368431150,21.4 .. Currently i read ...
0
votes
1answer
32 views

Convert DataFrame with index-OHLC data to index-O index-L index-H index-O (flatten OHLC data)

I have a DataFrame which looks like that Open High Low Close Volume (BTC) Volume (Currency) Weighted Price Date ...
2
votes
2answers
71 views

Calculating Covariance in Pandas Time Series

Apologies in advance if this is documented somewhere and I just failed to find it: Let's say that I have a time series data frame that looks like this: WEEK_END_DATE TITLE_SHORT ...
0
votes
1answer
40 views

Pandas Shaping Data for Covariance

I need to conduct a simple covariance analysis in a time series. My raw data comes in the shape like this: WEEK_END_DATE TITLE_SHORT SALES 2012-02-25 00:00:00.000000 "Bob" ...
-1
votes
0answers
56 views

Is there a race condition with DataFrame.update in Pandas? [closed]

I am calling DataFrame.update() around 7 times in a row inside of a function (on the same dataframe) before returning. I noticed the last one (and possibly others) was not working as intended. ...
0
votes
1answer
33 views

Trouble with NaNs: set_index().reset_index() corrupts data

I read that NaNs are problematic, but the following causes an actual corruption of my data, rather than an error. Is this a bug? Have I missed something basic in the documentation? I would like the ...

1 2 3 4 5 33