Code Monkey home page Code Monkey logo

Comments (4)

orbeckst avatar orbeckst commented on July 24, 2024

StackOverflow Pandas HDFStore select from nested columns not overly helpful...

from mdsynthesis.

dotsdl avatar dotsdl commented on July 24, 2024

Ah...this is not something we can fix, as it's a limitation of the pandas.HDFStore object, which handles conversion of pandas objects into PyTables objects. What it's saying is that having a multi-index on the columns isn't something it can handle.

It can, however, handle a multi-index on the rows, so doing:

s.data.add('multi', df.transpose())

works just fine. Does that help you, though?

A problem you might have despite this is that appends can only be done on the rows, not on columns. So if the code you're writing to generate the data needs to keep appending to the already-stored DataFrame then you'll have to drop the multi-index on the columns entirely. :/

If you don't care about appends, then you shouldn't lose anything from this workaround. However, depending on the dimensions (number of columns) read/write performance may not be great. DataFrame storage tends to be better when there are < 1000 columns.

from mdsynthesis.

orbeckst avatar orbeckst commented on July 24, 2024

Thanks. I suppose I could live with the workaround; in the mean time I've done aggregating before converting to a DataFrame.

But it is an inconvenience (from pandas' side) that one cannot store everything that one can build. (I could probably redesign my data structures but part of the appeal here is that I can do relatively quick and dirty analysis in a sane framework).

I am closing this issue because MDS/datreant cannot do anything about it.

from mdsynthesis.

dotsdl avatar dotsdl commented on July 24, 2024

Yeah, I don't think there is any persistence format supported in pandas that can support all of pandas own data structures, unfortunately.

from mdsynthesis.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.