change the subsampling method to use pymbar.timeseries.subsampleCorrelatedData() · Issue #39 · alchemistry/alchemlyb · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Proposed to change the subsampling method to avoid using the pandas slicing for subsampling, this issue is corresponding to the pull request #38
The pandas slicing method requires the steps to be integer which is rounded from the statistical inefficiency of a time series. This will sometimes make different time series indistinguishable from each other in terms of their subsampling positions. Proposed to switch to the pymbar subsampleCorrelatedData function.
The text was updated successfully, but these errors were encountered:
orbeckst
changed the title
change the subsamping method?
change the subsamping method to use pymbar.timeseries.subsampleCorrelatedData()
Nov 16, 2017
orbeckst
changed the title
change the subsamping method to use pymbar.timeseries.subsampleCorrelatedData()
change the subsampling method to use pymbar.timeseries.subsampleCorrelatedData()
Nov 16, 2017
- change the subsampling code to use the pymbar module to get the
subsampled indexes, the original method use the slicing function in
pandas which requires the slicing step to be integer
- kwarg conservative=True (default)
- test that series for statistical ineffiency calculation and the data
are sampled on the same times (otherwise the slicing would be wrong)
- added tests
- added notes and warning to the docs
- fixes#39
Proposed to change the subsampling method to avoid using the pandas slicing for subsampling, this issue is corresponding to the pull request #38
The pandas slicing method requires the steps to be integer which is rounded from the statistical inefficiency of a time series. This will sometimes make different time series indistinguishable from each other in terms of their subsampling positions. Proposed to switch to the pymbar subsampleCorrelatedData function.
The text was updated successfully, but these errors were encountered: