Code Monkey home page Code Monkey logo

Comments (1)

JBGreisman avatar JBGreisman commented on June 12, 2024

There are a few ways that this can be accomplished -- let's assume we have a rs.DataSet that looks like the following:

> ds
            FMODEL   PHIFMODEL
H  K  L                       
45 12 14  9.349418  -48.853035
37 10 13 17.603436 -126.121925
39 2  33 24.622107   -68.23137
14 1  37 214.67409  -46.876408
35 17 23  34.46986   86.572845

A simple solution would be this:

> ds2 = ds[[]].copy()
> ds2
Empty DataSet
Columns: []
Index: [(45, 12, 14), (37, 10, 13), (39, 2, 33), (14, 1, 37), (35, 17, 23)]

It is also possible to directly initialize one rs.DataSet with another:

> ds2 = rs.DataSet(ds[[]])
> ds2
Empty DataSet
Columns: []
Index: [(45, 12, 14), (37, 10, 13), (39, 2, 33), (14, 1, 37), (35, 17, 23)]

rs.DataSet objects are subclasses of pd.DataFrame, so typically any pandas solution should work in reciprocalspaceship. In my mind, this is a significant advantage to the design choice in rs, because it means that you can typically just follow the advice of stackoverflow results regarding pandas.

However, I'd like to provide one cautionary example -- if you were to do it using the currently accepted answer, you will lose the attributes associated with rs.DataSet (i.e. ds.cell and ds.spacegroup):

> ds2 = rs.DataSet(index=ds.index)
> ds2
Empty DataSet
Columns: []
Index: [(45, 12, 14), (37, 10, 13), (39, 2, 33), (14, 1, 37), (35, 17, 23)]
> ds.spacegroup
<gemmi.SpaceGroup("P 31 2 1")>
> print(ds2.spacegroup)
None

This is because the ds2 is only initialized with an index, which doesn't carry with it all the "metadata" of the rs.DataSet object.

from reciprocalspaceship.

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.