Tagged Questions
0
votes
1answer
74 views
pivot table subtotals
I have a data frame:
product = DataFrame({'_product': ['shoes','dress','cap','shoes','purse','t-shirt','t-shirt','dress','t-shirt'],
'city': ['A','A','A','B','A','A','B','C','A'],
...
12
votes
2answers
495 views
Pandas Pivot tables row subtotals
I'm using Pandas 0.10.1
Considering this Dataframe:
Date State City SalesToday SalesMTD SalesYTD
20130320 stA ctA 20 400 1000
20130320 stA ctB ...
0
votes
1answer
109 views
Renaming a pandas pivot table without losing axis labels
When I invoke rename on a pivot table, I lose the axis labels:
In [5]: df = pd.DataFrame(dict(x=[0,0,1,0,1], y=[1,0,1,1,0], z=[0,0,1,0,1]))
In [6]: pt = pd.pivot_table(df, 'z', cols='x', rows='y')
In ...
3
votes
2answers
217 views
Make pivot tables in sql like in spss
I have lots of data in PostgreSQL. But I need to do some pivot tables like it does SPSS.
For example i have table with cities and states.
create table cities
(
city integer,
state integer
);
...
1
vote
1answer
263 views
Column Differences in Python Pivot-Table
I have a pandas pivot_table that aggregates 2 data sets in 2 columns across several rows. I would like to add another column that is the difference between the aggregated values in the two existing ...
2
votes
2answers
769 views
Python Pandas : pivot table with aggfunc = count unique distinct
df2 = pd.DataFrame({'X' : ['X1', 'X1', 'X1', 'X1'], 'Y' : ['Y2','Y1','Y1','Y1'], 'Z' : ['Z3','Z1','Z1','Z2']})
X Y Z
0 X1 Y2 Z3
1 X1 Y1 Z1
2 X1 Y1 Z1
3 X1 Y1 Z2
...
2
votes
1answer
131 views
How to organize structured data in pandas dataframe
Suppose I have a DataFrame which has a subindex structure like the following, with 'date', 'tenor' 'mat' and 'strike' and where the fields to be observed are stored in the column 'vol':
date ...
1
vote
1answer
439 views
Filtering and selecting from pivot tables made with python pandas
I'm struggling with hierarchical indexes in the Python pandas package. Specifically I don't understand how to filter and compare data in rows after it has been pivoted.
Here is the example table ...
2
votes
1answer
144 views
Python pandas to partially collapse 2d matrix
I would like to partially "collapse" a matrix and keep the structure intact by just summing the condensed values. For example, I have this:
CHROM POS GENE DESC JOE FRED BILLY ...
1
vote
3answers
417 views
pandas pivoting a dataframe, duplicate rows
I'm having a little trouble with pivoting in pandas. The dataframe (dates, location, data) I'm working on looks like:
dates location data
date1 A X
date2 A Y
date3 ...
4
votes
2answers
1k views
Python Panda Pivot Table
I am trying to do a pivot table of frequency counts using Panda.
I have the following code:
from pandas import pivot_table, DataFrame, crosstab
import numpy as np
df=DataFrame({'Y':[99999991, ...
3
votes
1answer
559 views
Cross-tabulation (contingency table) using Python ORM?
Anyone doing very basic statistical explorations on data living in a relational database has had to calculate cross tabulations,also known as contingency tables(wikipedia page). these are ...
4
votes
1answer
705 views
SQLAlchemy Column to Row Transformation and vice versa — is it possible?
I'm looking for a SQLAlchemy only solution for converting a dict received from a form submission into a series of rows in the database, one for each field submitted. This is to handle preferences and ...
