Tagged Questions

For issues relating to managing hierarchical datasets with PyTables.

learn more… | top users | synonyms

16
votes
4answers
1k views

Python, PyTables, Java - tying all together

Question in nutshell What is the best way to get Python and Java to play nice with each other? More detailed explanation I have a somewhat complicated situation. I'll try my best to explain both ...
14
votes
1answer
220 views

Floating Point Exception with Numpy and PyTables

I have a rather large HDF5 file generated by PyTables that I am attempting to read on a cluster. I am running into a problem with NumPy as I read in an individual chunk. Let's go with the example: ...
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?
5
votes
2answers
701 views

PyTables vs. SQLite3 insertion speed

I bought Kibot's stock data and it is enormous. I have about 125,000,000 rows to load (1000 stocks * 125k rows/stock [1-minute bar data since 2010-01-01], each stock in a CSV file whose fields are ...
5
votes
6answers
787 views

Pytables vs. CSV for files that are not very large

I recently came across Pytables and find it to be very cool. It is clear that they are superior to a csv format for very large data sets. I am running some simulations using python. The output is not ...
4
votes
1answer
89 views

Difference between HDF5 file and PyTables file

Is there a difference between HDF5 files and files created by PyTables? PyTables has two functions .isHDFfile() and .isPyTablesFile() suggesting that there is a difference between the two formats. ...
3
votes
2answers
73 views

Simple and effective solution for combining Java, Python, PyTables and HDF5

I'm a newbie in Python, PyTables and HDF5. I'm looking for simple and best solution for my problem. Problem is next. On one side I have many XML files with data. I just wanna parse these files and ...
3
votes
2answers
132 views

Building a huge numpy array using pytables

How can I create a huge numpy array using pytables. I tried this but gives me the "ValueError: array is too big." error: import numpy as np import tables as tb ndim = 60000 h5file = ...
3
votes
1answer
472 views

In PyTables, how to create nested array of variable length?

I'm using PyTables 2.2.1 w/ Python 2.6, and I would like to create a table which contains nested arrays of variable length. I have searched the PyTables documentation, and the tutorial example ...
3
votes
3answers
323 views

Storing and reloading large multidimensional data sets in Python

I'm going to be running a large number of simulations producing a large amount of data that needs to be stored and accessed again later. Output data from my simulation program is written to text files ...
3
votes
1answer
298 views

PyTables batch get and update

I have daily stock data as an HDF5 file created using PyTables. I would like to get a group of rows, process it as an array and then write it back to disk (update rows) using PyTables. I couldn't ...
2
votes
1answer
94 views

Scala equivalent to pyTables?

I'm looking for a little assistance in Scala similar to that provided by pyTables. PyTables is a package for managing hierarchical datasets and designed to efficiently and easily cope with extremely ...
2
votes
1answer
158 views

What is the most elegant way of selecting a subset of columns using pytables?

I have a dataset with 300+ columns in pytables, and I want to be able to choose different subsets easily. There doesn't seem to be a very elegant solution to this, or is there something I'm missing? ...
2
votes
2answers
861 views

How do I remove hex values in a python string with regular expressions?

I have a cell array in matlab columns = {'MagX', 'MagY', 'MagZ', ... 'AccelerationX', 'AccelerationX', 'AccelerationX', ... 'AngularRateX', 'AngularRateX', 'AngularRateX', ... ...
2
votes
2answers
707 views

“Reading in” large text file into hdf5 via PyTables or PyHDF?

I'm attempting some statistics using SciPy, but my input dataset is quite large (~1.9GB) and in dbf format. The file is large enough that Numpy returns an error message when I try to create an array ...
2
votes
1answer
208 views

Most efficient way to extract PyTables table with stored colnames as variable names

The following code provides my needed functionality; but, takes a bit more than 10 seconds for a table that includes 200 variables with 64000 rows. Is there a more efficient way to create a variable ...
2
votes
1answer
303 views

PyTables problem - different results when iterating over subset of table

I am new to PyTables, and am looking at using it to process data generated from an agent-based modeling simulation and stored in HDF5. I'm working with a 39 MB test file, and am experiencing some ...
1
vote
2answers
48 views

Is it possible to store multidimensional arrays of arbitrary shape in a PyTables cell?

PyTables supports the creation of tables from user-defined classes that inherit from the IsDescription class. This includes support for multidimensional cells, as in the following example from the ...
1
vote
0answers
48 views

Using pytables, which is more efficient: scipy.sparse or numpy dense matrix?

When using pytables, there's no support (as far as I can tell) for the scipy.sparse matrix formats, so to store a matrix I have to do some conversion, e.g. def store_sparse_matrix(self): grp1 = ...
1
vote
0answers
44 views

search in a pytables array

I have a multidimensional array stored in pytables. how do I perform a search on it? For example: I like to do a search to return a dimension of the array in which the sum of all values ​​of this ...
1
vote
1answer
85 views

python - How to store a numpy multidimensional array in pytables?

How can i put a numpy multidimensional array in a hdf5 file using pytables? From what i can tell i can't put a array field in a pytables table. I also need to store some info about this array and be ...
1
vote
0answers
49 views

building pytables on mac os lion

I'm trying to build pytables 2.3.1 on mac lion, but I've faced with this error: tsf-wpa-3-6133:tables-2.3.1 Hesam$ python setup.py build * Found numpy 1.5.1 package installed. * Found numexpr ...
1
vote
2answers
146 views

Appending large amount of data to a tables (HDF5) database where database.numcols != newdata.numcols?

I am trying to append a large dataset (>30Gb) to an existing pytables table. The table is N columns, and the dataset is N-1 columns; one column is calculated after I know the other N-1 columns. I'm ...
1
vote
1answer
171 views

Is there a way to store PyTable columns in a specific order?

It seems that the PyTable columns are alphabetically ordered when using both dictionary or class for schema definition for the call to createTable(). My need is to establish a specific order and then ...
1
vote
2answers
788 views

HDF5 : storing NumPy data

when I used NumPy I stored it's data in the native format *.npy. It's very fast and gave me some benefits, like this one I could read *.npy from C code as simple binary data(I mean *.npy are ...
1
vote
2answers
94 views

storing 'object'

Does PyTables support storing Python objects? something like this : dtype = np.dtype([('Name', '|S2'), ('objValue', object)]) data = np.zeros(3, dtype) file.createArray(box3,'complicated',data) I ...
1
vote
1answer
379 views

50 million node hierarchy or larger

Does anyone out there have any great ideas to achieve a massively scalable hierarchical datastore? It needs rapid add and ability to have many users of site requesting reports on the number of nodes ...
1
vote
1answer
480 views

Python, PyTables - taking advantage of in-kernel searching

I have HDF5 files with multiple groups, where each group contains a data set with >= 25 million rows. At each time step of simulation, each agent outputs the other agents he/she sensed at that time ...
0
votes
1answer
57 views

How should python dictionaries be stored in pytables?

pytables doesn't natively support python dictionaries. The way I've approached it is to make a data structure of the form: tables_dict = { 'key' : tables.StringCol(itemsize=40), 'value' ...
0
votes
0answers
42 views

Storing images and metadata with PyTables

I'm using PyTables to store some images as Array and CArray data types. For each of these images, I also want to store some basic metadata (e.g., EXIF data). I can imagine a number of approaches to ...
0
votes
2answers
49 views

problems with carrays in python

I have this code: import numpy as np import tables as tb ndim = 50000 h5in = tb.openFile('data.h5','r') data = h5in.root.x h5out = tb.openFile('testout.h5', mode='w', title="argsort distances") ...
0
votes
1answer
53 views

error importing tables in python

I have installed python 2.6, numpy 1.6.1, tables 2.3.1 y numexpr 2.0 under windows 32bits. However import tables gives me this error: Traceback (most recent call last): File ...
0
votes
1answer
119 views

Issue for insert using psycopg

I am reading data from a .mat file using the Pytables module. After reading the data, I want to insert this data into the database using psycopg. Here is a sample code piece: file = ...
0
votes
1answer
587 views

Problems running built PyTables on Mac

I built numpy 1.5.1, numexpr 1.4.2, and PyTables 2.2.1 on a Mac, and am getting the following error. I googled it, but found only 1 place where someone mentions this specific error, and found no ...
0
votes
1answer
477 views

Unable to reinstall PyTables for Python 2.7

I am installing Python 2.7 in addition to 2.7. When installing PyTables again for 2.7, I get this error - Found numpy 1.5.1 package installed. .. ERROR:: Could not find a local HDF5 installation. ...
0
votes
1answer
325 views

merging 2 hdf5 files with pytables

ptrepack is almost what i want except that it only has the options to overwrite or ignore duplicate paths. the example below illustrates what i want to happen with the structures input file one / ...
0
votes
1answer
238 views

HDF5 internal data organization and NumPy usage

as hdf5 documentation says, HDF5 stores data using NumPy "It is built on top of the HDF5 library, the Python language and the NumPy package. It features an object-oriented interface that, combined ...
0
votes
2answers
167 views

PyTable Column Order

Is there a way to create a PyTable with a specific column order? By default, the columns are alphabetically ordered when using both dictionary or class for schema definition for the call to ...
0
votes
2answers
387 views

hdf viewer on windows for tables created using pyTables?

viTables only seems to work with python 2.5. I have downloaded HDFView, but when I try to open a table I created following this tutorial, I get the following error message: Failed to open file ...