proadv
ProADV is a Python package designed for efficient processing and analysis of acoustic Doppler velocimeter (ADV) data. It offers advanced cleaning algorithms for robust despiking and noise removal, comprehensive statistical functions for calculating essential measures, and further analysis capabilities.
File Explorer
- publish.yml
- first.csv
- second.csv
- acceleration.md
- kernel-density.md
- modified-three-dimensional-kernel-density.md
- phase-space.md
- three-dimensional-kernel-density.md
- three-dimensional-phase-space.md
- velocity-correlation.md
- replacement.md
- normal.md
- fluid.md
- spectrum.md
- synthetic.md
- descriptive.md
- moment.md
- series.md
- spread.md
- acoustic-Doppler-velocimeter.md
- index.md
- acceleration.py
- bivariate-kernel.py
- correlation.py
- phase-space-3d.py
- phase-space.py
- trivariate-kernel.py
- acceleration.png
- bivariate-kernel.png
- correlation.png
- exponential-moving-average.png
- kalman.png
- phase-space-3d.png
- phase-space.png
- polynom_replacement.png
- readme.jpg
- simple-moving-average.png
- singular-spectrum.png
- spectrum.png
- synthetic.png
- trivariate-kernel.png
- weighted-moving-average.png
- exponential-moving-average.py
- kalman.py
- simple-moving-average.py
- singular-spectrum.py
- spectrum.py
- synthetic.py
- weighted-moving-average.py
- __init__.py
- acceleration.py
- bivariatekernel.py
- correlation.py
- phasespace.py
- poincare.py
- pollution.py
- spherical.py
- trivariatekernel.py
- __init__.py
- replacements.py
- __init__.py
- __init__.py
- bivariate.py
- __init__.py
- normal.py
- __init__.py
- optimize.py
- __init__.py
- butter.py
- fluid.py
- spectrum.py
- synthetic.py
- __init__.py
- descriptive.py
- moment.py
- series.py
- spread.py
- __init__.py
- test_exponential_moving_average.py
- test_max.py
- test_mean.py
- test_median.py
- test_min.py
- test_mode.py
- test_moving_average.py
- __init__.py
- __init__.py
- __init__.py
- .gitignore
- .readthedocs.yml
- CITATION.cff
- LICENSE
- mkdocs.yml
- README.md
- requirements.txt
- setup.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
