Summary: pandas 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. Pandas is implemented primarily using numpy and Cython; it is intended to be able to integrate ...
16
votes
2answers
475 views
Why are pandas merges in python faster than data.table merges in R?
I recently came across the pandas library for python, which according to this benchmark performs very fast in-memory merges. It's even faster than the data.table package in R (my language of choice ...
8
votes
2answers
2k views
Tutorial on PANDAS and PYTABLES
Is anyone aware of a good tutorial, list of examples, or guide on using pandas with PyTables?
4
votes
2answers
482 views
Compute a compounded return series in Python
Greetings all, I have two series of data: daily raw stock price returns (positive or negative floats) and trade signals (buy=1, sell=-1, no trade=0).
The raw price returns are simply the log of ...
3
votes
2answers
60 views
How to apply slicing on pandas Series of strings
I'm playing with pandas and trying to apply string slicing on a Series of strings object.
Instead of getting the strings sliced, the series gets sliced:
In [22]: s = p.Series(data=['abcdef']*20)
In ...
3
votes
1answer
203 views
Using pandas, how do I subsample a large DataFrame by group in an efficient manner?
I am trying to subsample rows of a DataFrame according to a grouping. Here is an example. Say I define the following data:
from pandas import *
df = DataFrame({'group1' : ...
3
votes
1answer
502 views
How to get the correlation between two timeseries using Pandas
I have two sets of temperature date, which have readings at regular (but different) time intervals. I'm trying to get the correlation between these two sets of data.
I've been playing with Pandas to ...
2
votes
1answer
17 views
trying to explain pandas.DataFrame behavior
If I use the following methodology to construct a pandas.DataFrame, I get an output that (I think) is peculiar:
import pandas, numpy
df = pandas.DataFrame(numpy.random.rand(100,2), index = ...
2
votes
2answers
326 views
What is the most efficient way to loop through dataframes with pandas?
Essentially I want to perform my own complex operations on financial data in dataframes in a sequential manner.
For example I am using the following MSFT CSV file taken from ...
2
votes
4answers
612 views
Rolling median in python
I have some stock data based on daily close values. I need to be able to insert these values into a python list and get a median for the last 30 closes. Is there a python library that does this?
...
1
vote
1answer
62 views
Plotting a stock chart with Pandas in IPython
I'm just getting started with Python/Pandas and put together the following code to plot the S&P 500.
from pandas.io.data import DataReader
sp500 = DataReader("^GSPC", "yahoo", ...
1
vote
1answer
69 views
Pandas DataFrame serialization
I'm having trouble writing the entries of a pandas dataframe to a stringbuffer.
It's possible to initialize a dataframe by passing a stringbuffer to the read_csv function.
In [80]: buf = ...
1
vote
1answer
45 views
DataFrame to Panel indexed by nonunique column with Pandas
The following code should do what I want but it takes 10gb of ram by the time it is 20% done with the loop.
# In [4]: type(pd)
# Out[4]: pandas.sparse.frame.SparseDataFrame
memid = unique(pd.Member)
...
1
vote
1answer
98 views
selecting across multiple columns with python pandas?
I have a dataframe df in pandas that was built using pandas.read_table from a csv file. The dataframe has several columns and it is indexed by one of the columns (which is unique, in that each row has ...
1
vote
1answer
66 views
indexing several csv files with pandas from records?
I have a list of csv files ("file1", "file2", ...") that have two columns but do not have header labels. I'd like to assign them header labels and them as a DataFrame which is indexed by file and then ...
1
vote
2answers
140 views
python: pandas install errors
I have the academic distribution of EPD 7.1 for MacOS 10.6.x, which has pandas 0.3 version. THe latest official version is 0.5.0 so I though I would upgrade to the latest.
Here is what I did:
...
1
vote
1answer
319 views
append two data frame with pandas
I try to merge dataframes by rows doing:
bigdata=data1.append(data2)
and I get the following error:
Exception: Index cannot contain duplicate values!
The index of the first data frame starts ...
1
vote
1answer
164 views
Pandas + Django + mod_wsgi + virtualenv
Pandas is producing 'module' object has no attribute 'core' when being imported under django and mod_wsgi inside a virtual environment. It works fine running under the django development server ...
0
votes
1answer
42 views
Python: Pandas, Dataframe, Convert 1column data into 2D data format
This is Pandas dataframe
I want to convert 1D data into 2D array form
How to convert from
'A' 'B' 'C'
1 10 11 a
2 10 12 b
3 10 13 c
4 20 11 d
5 20 12 e
6 20 13 ...
0
votes
0answers
78 views
Running Python/Numpy/Pandas on older secure computer
I'm trying to run a script at work which uses the Python labeled array module Pandas which is built on top of Numpy but Python crashes every time with an "Unhandled Exception" error pointing ...
0
votes
1answer
141 views
Python map() function output into Pandas DataFrame
I utilize python's map() function to pass parameters to a trading model and output the results. I use itertools.product to find all the possible combinations of the two parameters, then pass the ...
0
votes
1answer
72 views
Pandas Panel for share portfolio
I have a pandas panel of investment pricing data to which I want to add two new minor axis columns (portfolio holding and benchmark holding).
The initial panel is:
Dimensions: 4 (items) x 463 ...
0
votes
2answers
156 views
Convert array of string (category) to array of int from a pandas dataframe
I am trying to do something very similar to that previous question but I meet error.
I have a pandas dataframe containing features and label I need to do some convertion to send the features and the ...
0
votes
3answers
374 views
Sort a pandas DataMatrix in ascending order
The pandas DataFrame object has a sort method but pandas DataMatrix object does not.
What is the best way to sort this DataMatrix object by index (the date column) in ascending order?
>>> ...
-1
votes
0answers
47 views
Storing large pandas Panels to disk.
I'm trying to use pandas to store a database of 20+ years of daily equity data, over thousands of equities. Now, I can't fit the entire data set in memory, so I've been trying to import the data in ...