fBb


NamefBb JSON
Version 0.1.12 PyPI version JSON
download
home_pagehttps://github.com/fiddir/fBb
SummaryPython Package for Stochastic Interpolation via multipoint fractional Brownian bridges
upload_time2023-10-27 19:07:39
maintainerJan Friedrich
docs_urlNone
author
requires_python
licenseMIT
keywords complex systems stochastic interpolation fractional brownian motion
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            fBb
===

A python package for stochastic interpolation of sparse or incomplete time series by fractional Brownian motion.

For further references, see: J. Friedrich, S. Gallon, A. Pumir, and R. Grauer, Phys. Rev. Lett. 125, 170602 (2020).

Installation
------------

The ``fBb`` package is available on pypi and can be installed using pip

.. code-block:: shell

    pip install fBb

How to use this package
-----------------------

Stochastic interpolation
~~~~~~~~~~~~~~~~~~~~~~~~

To use ``fBb`` to interpolate sparse measurement points ``X_i`` at 
times ``t_i``
import the multipoint fractional Brownian bridge process with the desired
Hurst parameter ``H`` and the desired time step ``dt`` of the underlying fractional Brownian motion.

.. code-block:: python

    from fBb import MFBB

    mfbb = MFBB(X_i, t_i, H, dt)
    X_bridge = mfbb.bridge()
    t_bridge = mfbb.t_fine()

    plt.scatter(t_i, X_i)
    plt.plot(t_bridge, X_bridge)
    plt.show()




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/fiddir/fBb",
    "name": "fBb",
    "maintainer": "Jan Friedrich",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "complex systems,stochastic interpolation,fractional Brownian motion",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/b3/83/eb93abe7d7eabcd48cae5845316f366b7b81540f7d83de48d7f2a8cfabf7/fBb-0.1.12.tar.gz",
    "platform": "any",
    "description": "fBb\n===\n\nA python package for stochastic interpolation of sparse or incomplete time series by fractional Brownian motion.\n\nFor further references, see: J. Friedrich, S. Gallon, A. Pumir, and R. Grauer, Phys. Rev. Lett. 125, 170602 (2020).\n\nInstallation\n------------\n\nThe ``fBb`` package is available on pypi and can be installed using pip\n\n.. code-block:: shell\n\n    pip install fBb\n\nHow to use this package\n-----------------------\n\nStochastic interpolation\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nTo use ``fBb`` to interpolate sparse measurement points ``X_i`` at \ntimes ``t_i``\nimport the multipoint fractional Brownian bridge process with the desired\nHurst parameter ``H`` and the desired time step ``dt`` of the underlying fractional Brownian motion.\n\n.. code-block:: python\n\n    from fBb import MFBB\n\n    mfbb = MFBB(X_i, t_i, H, dt)\n    X_bridge = mfbb.bridge()\n    t_bridge = mfbb.t_fine()\n\n    plt.scatter(t_i, X_i)\n    plt.plot(t_bridge, X_bridge)\n    plt.show()\n\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python Package for Stochastic Interpolation via multipoint fractional Brownian bridges",
    "version": "0.1.12",
    "project_urls": {
        "Homepage": "https://github.com/fiddir/fBb"
    },
    "split_keywords": [
        "complex systems",
        "stochastic interpolation",
        "fractional brownian motion"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b383eb93abe7d7eabcd48cae5845316f366b7b81540f7d83de48d7f2a8cfabf7",
                "md5": "f5b4c1694f1c28137a11cac55223d7ed",
                "sha256": "f832972fc43874c2802c79a41a8753f48a9e6c2e2719ec2893f1a3332b1de4b6"
            },
            "downloads": -1,
            "filename": "fBb-0.1.12.tar.gz",
            "has_sig": false,
            "md5_digest": "f5b4c1694f1c28137a11cac55223d7ed",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 5516,
            "upload_time": "2023-10-27T19:07:39",
            "upload_time_iso_8601": "2023-10-27T19:07:39.496265Z",
            "url": "https://files.pythonhosted.org/packages/b3/83/eb93abe7d7eabcd48cae5845316f366b7b81540f7d83de48d7f2a8cfabf7/fBb-0.1.12.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-27 19:07:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fiddir",
    "github_project": "fBb",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "fbb"
}
        
Elapsed time: 0.13348s