All Projects → GAA-UAM → Scikit Fda

GAA-UAM / Scikit Fda

Licence: bsd-3-clause
Functional Data Analysis Python package

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Projects that are alternatives of or similar to Scikit Fda

Hyperlearn
50% faster, 50% less RAM Machine Learning. Numba rewritten Sklearn. SVD, NNMF, PCA, LinearReg, RidgeReg, Randomized, Truncated SVD/PCA, CSR Matrices all 50+% faster
Stars: ✭ 1,204 (+1223.08%)
Mutual labels:  statistics
Orgstat
Statistics visualizer for org-mode
Stars: ✭ 83 (-8.79%)
Mutual labels:  statistics
Pypistats
Command-line interface to PyPI Stats API to get download stats for Python packages
Stars: ✭ 86 (-5.49%)
Mutual labels:  statistics
Linqstatistics
Linq extensions to calculate basic statistics
Stars: ✭ 78 (-14.29%)
Mutual labels:  statistics
Bat.jl
A Bayesian Analysis Toolkit in Julia
Stars: ✭ 82 (-9.89%)
Mutual labels:  statistics
Dstat
Versatile resource statistics tool (the real one, not the Red Hat clone)
Stars: ✭ 1,255 (+1279.12%)
Mutual labels:  statistics
Fermat.js
Mathematics and statistics library for TypeScript.
Stars: ✭ 74 (-18.68%)
Mutual labels:  statistics
Scalac Profiling
Implementation of SCP-010.
Stars: ✭ 90 (-1.1%)
Mutual labels:  statistics
Awesome time series in python
This curated list contains python packages for time series analysis
Stars: ✭ 1,245 (+1268.13%)
Mutual labels:  statistics
Wp Ulike
WP ULike enables you to add Ajax Like button into your WordPress and allowing your visitors to like and unlike posts,comments, BuddyPress activities & bbPress Topics
Stars: ✭ 84 (-7.69%)
Mutual labels:  statistics
Superseriousstats
superseriousstats is a fast and efficient program to create statistics out of various types of chat logs
Stars: ✭ 78 (-14.29%)
Mutual labels:  statistics
Openml R
R package to interface with OpenML
Stars: ✭ 81 (-10.99%)
Mutual labels:  statistics
Memcache Info
Simple and efficient way to show information about Memcache.
Stars: ✭ 84 (-7.69%)
Mutual labels:  statistics
Github Traffic
Get the Github traffic for the specified repository
Stars: ✭ 77 (-15.38%)
Mutual labels:  statistics
Simplestatistics
🎲 Simple statistical functions implemented in readable Python.
Stars: ✭ 88 (-3.3%)
Mutual labels:  statistics
Projpred
Projection predictive variable selection
Stars: ✭ 76 (-16.48%)
Mutual labels:  statistics
Weightedcalcs
Pandas-based utility to calculate weighted means, medians, distributions, standard deviations, and more.
Stars: ✭ 83 (-8.79%)
Mutual labels:  statistics
Hs Gauge
Lean Haskell Benchmarking
Stars: ✭ 91 (+0%)
Mutual labels:  statistics
Zelig
A statistical framework that serves as a common interface to a large range of models
Stars: ✭ 89 (-2.2%)
Mutual labels:  statistics
Pumas.jl
Pharmaceutical Modeling and Simulation for Nonlinear Mixed Effects (NLME), Quantiative Systems Pharmacology (QsP), Physiologically-Based Pharmacokinetics (PBPK) models mixed with machine learning
Stars: ✭ 84 (-7.69%)
Mutual labels:  statistics

.. image:: https://raw.githubusercontent.com/GAA-UAM/scikit-fda/develop/docs/logos/title_logo/title_logo.png :alt: scikit-fda: Functional Data Analysis in Python

scikit-fda: Functional Data Analysis in Python

|python|_ |build-status| |docs| |Codecov|_ |PyPIBadge|_ |license|_ |doi|

Functional Data Analysis, or FDA, is the field of Statistics that analyses data that depend on a continuous parameter.

This package offers classes, methods and functions to give support to FDA in Python. Includes a wide range of utils to work with functional data, and its representation, exploratory analysis, or preprocessing, among other tasks such as inference, classification, regression or clustering of functional data. See documentation for further information on the features included in the package.

Documentation

The documentation is available at fda.readthedocs.io/en/stable/ <https://fda.readthedocs.io/en/stable/>_, which includes detailed information of the different modules, classes and methods of the package, along with several examples showing different functionalities.

The documentation of the latest version, corresponding with the develop version of the package, can be found at fda.readthedocs.io/en/latest/ <https://fda.readthedocs.io/en/latest/>_.

Installation

Currently, scikit-fda is available in Python 3.6 and 3.7, regardless of the platform. The stable version can be installed via PyPI_:

.. code::

pip install scikit-fda

Installation from source

It is possible to install the latest version of the package, available in the develop branch, by cloning this repository and doing a manual installation.

.. code:: bash

git clone https://github.com/GAA-UAM/scikit-fda.git
pip install ./scikit-fda

Make sure that your default Python version is currently supported, or change the python and pip commands by specifying a version, such as python3.6:

.. code:: bash

git clone https://github.com/GAA-UAM/scikit-fda.git
python3.6 -m pip install ./scikit-fda

Requirements

scikit-fda depends on the following packages:

  • cython <https://github.com/cython/cython>_ - Python to C compiler
  • fdasrsf <https://github.com/jdtuck/fdasrsf_python>_ - SRSF framework
  • findiff <https://github.com/maroba/findiff>_ - Finite differences
  • matplotlib <https://github.com/matplotlib/matplotlib>_ - Plotting with Python
  • mpldatacursor <https://github.com/joferkington/mpldatacursor/>_ - Interactive data cursors for matplotlib
  • multimethod <https://github.com/coady/multimethod>_ - Multiple dispatch
  • numpy <https://github.com/numpy/numpy>_ - The fundamental package for scientific computing with Python
  • pandas <https://github.com/pandas-dev/pandas>_ - Powerful Python data analysis toolkit
  • rdata <https://github.com/vnmabus/rdata>_ - Reader of R datasets in .rda format in Python
  • scikit-datasets <https://github.com/daviddiazvico/scikit-datasets>_ - Scikit-learn compatible datasets
  • scikit-learn <https://github.com/scikit-learn/scikit-learn>_ - Machine learning in Python
  • scipy <https://github.com/scipy/scipy>_ - Scientific computation in Python
  • setuptools <https://github.com/pypa/setuptools>_ - Python Packaging

The dependencies are automatically installed.

Contributions

All contributions are welcome. You can help this project grow in multiple ways, from creating an issue, reporting an improvement or a bug, to doing a repository fork and creating a pull request to the development branch.

The people involved at some point in the development of the package can be found in the contributors file <https://github.com/GAA-UAM/scikit-fda/blob/develop/THANKS.txt>_.

.. Citation

If you find this project useful, please cite:

.. todo:: Include citation to scikit-fda paper.

License

The package is licensed under the BSD 3-Clause License. A copy of the license_ can be found along with the code.

.. _examples: https://fda.readthedocs.io/en/latest/auto_examples/index.html .. _PyPI: https://pypi.org/project/scikit-fda/

.. |python| image:: https://img.shields.io/pypi/pyversions/scikit-fda.svg .. _python: https://badge.fury.io/py/scikit-fda

.. |build-status| image:: https://travis-ci.org/GAA-UAM/scikit-fda.svg?branch=develop :alt: build status :scale: 100% :target: https://travis-ci.com/GAA-UAM/scikit-fda

.. |docs| image:: https://readthedocs.org/projects/fda/badge/?version=latest :alt: Documentation Status :scale: 100% :target: http://fda.readthedocs.io/en/latest/?badge=latest

.. |Codecov| image:: https://codecov.io/gh/GAA-UAM/scikit-fda/branch/develop/graph/badge.svg .. _Codecov: https://codecov.io/github/GAA-UAM/scikit-fda?branch=develop

.. |PyPIBadge| image:: https://badge.fury.io/py/scikit-fda.svg .. _PyPIBadge: https://badge.fury.io/py/scikit-fda

.. |license| image:: https://img.shields.io/badge/License-BSD%203--Clause-blue.svg .. _license: https://github.com/GAA-UAM/scikit-fda/blob/master/LICENSE.txt

.. |doi| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3468127.svg :target: https://doi.org/10.5281/zenodo.3468127

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].