Tag Info

Hot answers tagged

57

pandas is faster because I came up with a better algorithm, which is implemented very carefully using a fast hash table implementation (https://github.com/attractivechaos/klib) and in C/Cython to avoid the Python interpreter overhead for the non-vectorizable parts. The algorithm is described in some detail in my presentation here: ...


28

You can loop through the rows by transposing and then calling iteritems: for date, row in df.T.iteritems(): # do some logic here I am not certain about efficiency in that case. To get the best possible performance in an iterative algorithm, you might want to explore writing it in Cython, so you could do something like: def my_algo(ndarray[object] ...


25

It looks like Wes may have discovered a known issue in data.table when the number of unique strings (levels) is large: 10,000. Does Rprof() reveal most of the time spent in the call sortedmatch(levels(i[[lc]]), levels(x[[rc]])? This isn't really the join itself (the algorithm), but a preliminary step. Recent efforts have gone into allowing character ...


21

This blog post is the best I've seen so far. http://messymind.net/2012/07/making-matplotlib-look-like-ggplot/ It doesn't focus on your standard R plots like you see in most of the "getting started"-type examples. Instead it tries to emulate the style of ggplot2, which seems to be nearly universally heralded as stylish and well-designed. To get the axis ...


19

I'm the primary pandas developer (and not a frequent StackOverflow user, hence why I missed this for a while). There are unfortunately few docs about the HDFStore object and I'd love to dedicate some more time to building it out (or to get some help). The source code is the best source of information-- there is not much magic to using PyTables. Some people ...


19

Indeed, pandas provides high level data manipulation tools built on top of NumPy. NumPy by itself is a fairly low-level tool, and will be very much similar to using MATLAB. pandas on the other hand provides rich time series functionality, data alignment, NA-friendly statistics, groupby, merge and join methods, and lots of other conveniences. It has become ...


18

To my knowledge, there is no built-in solution in matplotlib that will directly give to your figures a similar look than the ones made with R. Some packages, like mpltools, adds support for stylesheets using Matplotlib’s rc-parameters, and can help you to obtain a ggplot look (see the ggplot style for an example). However, since everything can be tweaked ...


17

df = df.rename(columns={'$a': 'a', '$b': 'b'}) # OR df.rename(columns={'$a': 'a', '$b': 'b'}, inplace=True) http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.rename.html


17

Use our friend lookup, designed precisely for this purpose: In [17]: prices Out[17]: AAPL GOOG IBM XOM 2011-01-10 339.44 614.21 142.78 71.57 2011-01-13 342.64 616.69 143.92 73.08 2011-01-26 340.82 616.50 155.74 75.89 2011-02-02 341.29 612.00 157.93 79.46 2011-02-10 351.42 616.44 159.32 79.68 2011-03-03 356.40 ...


15

Series.value_counts gives you the histogram you're looking for: In [9]: df['Qu1'].value_counts() Out[9]: 4 2 3 2 1 1 So, apply this function to each of those 3 columns: In [13]: table = df[['Qu1', 'Qu2', 'Qu3']].apply(lambda x: x.value_counts()) In [14]: table Out[14]: Qu1 Qu2 Qu3 1 1 1 1 2 NaN 2 1 3 2 2 NaN 4 2 ...


15

If you put State and City not both in the rows, you'll get separate margins. Reshape and you get the table you're after: In [10]: table = pivot_table(df, values=['SalesToday', 'SalesMTD','SalesYTD'],\ rows=['State'], cols=['City'], aggfunc=np.sum, margins=True) In [11]: table.stack('City') Out[11]: SalesMTD SalesToday ...


14

As Wes says, io/sql's read_frame will do it, once you've gotten a database connection using a DBI compatible library. Here's a short example using the MySQLdb and cx_Oracle libraries to connect to Oracle and MySQL and query their data dictionaries: import pandas.io.sql as psql import cx_Oracle ora_conn = cx_Oracle.connect('your_connection_string') df_ora ...


13

Pandas is based on NumPy arrays. The key to speed with NumPy arrays is to perform your operations on the whole array at once, never row-by-row or item-by-item. For example, if close is a 1-d array, and you want the day-over-day percent change, pct_change = close[1:]/close[:-1] This computes the entire array of percent changes as one statement, instead of ...


13

If you are one Windows, I can advise pythonxy for an easy and painless installation of Python and the core scientific libraries. It is quite large and contains a lot of packages, which you maybe do not need, but at the installation, you can opt to choose which libraries to install.


13

Looks like Python does not add an intercept by default to your expression, whereas R does when you use the formula interface.. This means you did fit two different models. Try lm( y ~ x - 1, data) in R to exclude the intercept, or in your case and with somewhat more standard notation lm(num_rx ~ ridageyr - 1, data=demoq)


13

Try using xs to be very precise: In [5]: df.xs('a', level=0) Out[5]: value1 value2 group2 c 1.1 7.1 c 2.0 8.0 d 3.0 9.0 In [6]: df.xs('c', level='group2') Out[6]: value1 value2 group1 a 1.1 7.1 a 2.0 8.0


13

I routinely use tens of gigabytes of data in just this fashion eg I have tables on disk that I read via queries, create data and append back see the docs at http://pandas.pydata.org/pandas-docs/dev/io.html#hdf5-pytables here is a thread of doing (partially at least what I think u want to do) and some suggestions in how to store your data ...


12

Why don't you simply use set_index method? In : col = ['a','b','c'] In : data = DataFrame([[1,2,3],[10,11,12],[20,21,22]],columns=col) In : data Out: a b c 0 1 2 3 1 10 11 12 2 20 21 22 In : data2 = data.set_index('a') In : data2 Out: b c a 1 2 3 10 11 12 20 21 22


12

In [36]: df Out[36]: A B C D a 0 2 6 0 b 6 1 5 2 c 0 2 6 0 d 9 3 2 2 In [37]: rows Out[37]: ['a', 'c'] In [38]: df.drop(rows) Out[38]: A B C D b 6 1 5 2 d 9 3 2 2 In [39]: df[~((df.A == 0) & (df.B == 2) & (df.C == 6) & (df.D == 0))] Out[39]: A B C D b 6 1 5 2 d 9 3 2 2 In [40]: df.ix[rows] ...


12

Pandas has exponentially weighted moving moment functions http://pandas.pydata.org/pandas-docs/dev/computation.html?highlight=exponential#exponentially-weighted-moment-functions By the way, there shouldn't be any functionality leftover in the scikits.timeseries package that is not also in pandas.


11

Have you seen EPD free? From the enthought website: Our new lightweight distribution of scientific Python essentials: SciPy, NumPy, IPython, matplotlib, Traits, & Chaco it might be enough to get you started.


11

g1 here is a DataFrame. It has a hierarchical index, though: In [19]: type(g1) Out[19]: pandas.core.frame.DataFrame In [20]: g1.index Out[20]: MultiIndex([('Alice', 'Seattle'), ('Bob', 'Seattle'), ('Mallory', 'Portland'), ('Mallory', 'Seattle')], dtype=object) Perhaps you want something like this? In [21]: g1.add_suffix('_Count').reset_index() ...


11

Yes, dropna. See http://pandas.pydata.org/pandas-docs/stable/missing_data.html and the DataFrame.dropna docstring: Definition: DataFrame.dropna(self, axis=0, how='any', thresh=None, subset=None) Docstring: Return object with labels on given axis omitted where alternately any or all of the data are missing Parameters ---------- axis : {0, 1} how : {'any', ...


11

Note that I have implemented new cut and qcut functions for discretizing continuous data: http://pandas.pydata.org/pandas-docs/dev/basics.html#discretization-and-quantiling


11

Don't know if you solved the problem but if anyone has this problem in future. $python >>import numpy >>print(numpy) Go to the location printed and delete the numpy installation found there. You can then use pip or easy_install


11

pandas to the rescue: import pandas as pd print pd.read_csv('value.txt') Date price factor_1 factor_2 0 2012-06-11 1600.20 1.255 1.548 1 2012-06-12 1610.02 1.258 1.554 2 2012-06-13 1618.07 1.249 1.552 3 2012-06-14 1624.40 1.253 1.556 4 2012-06-15 1626.15 1.258 1.552 5 2012-06-16 1626.15 ...


10

You might also try idxmax: In [5]: df = pandas.DataFrame(np.random.randn(10,3),columns=['A','B','C']) In [6]: df Out[6]: A B C 0 2.001289 0.482561 1.579985 1 -0.991646 -0.387835 1.320236 2 0.143826 -1.096889 1.486508 3 -0.193056 -0.499020 1.536540 4 -2.083647 -3.074591 0.175772 5 -0.186138 -1.949731 0.287432 6 -0.480790 ...


10

It sounds like you don't want reindex. Somewhat confusingly reindex is not for defining a new index, exactly; rather, it looks for rows that have the specified indices. So if you have a DataFrame with index [0, 1, 2], then doing a reindex([2, 1, 0]) will return the rows in reverse order. Doing something like reindex([8, 9, 10]) does not make a new index ...


10

Based on github issue #620, it looks like you'll soon be able to do the following: df[df['A'].str.contains("hello")] Update: vectorized string methods (i.e., Series.str) are available in pandas 0.8.1 and up.


10

In principle it shouldn't run out of memory, but there are currently memory problems with read_csv on large files caused by some complex Python internal issues (this is vague but it's been known for a long time: http://github.com/pydata/pandas/issues/407). At the moment there isn't a perfect solution (here's a tedious one: you could transcribe the file ...



Only top voted, non community-wiki answers of a minimum length are eligible