It will do array manipulations functions like Searching, Sorting, Sorting, Min/Max value.
Project description
mds_array_manipulation
Summary
Project Summary
The package is intended to do basic array manipulations functions like Searching, Sorting, Counting non-zero elements, Finding indices of max value. This is a package developed for the group-17 project for the UBC MDS DSCI 524 (Collaborative Software Development) course. Documentation can be found here.
The package has been published on the pypi website and you can find it here.
Functions Included in the Package
-
sort_array
: Takes a numpy array of integers or strings and returns the array in sorted order, using Insertion Sort (Sedgewick, 1983). -
search_array
: Searches for and returns the index of a specified element in a numpy array, if it exists -
count_nonzero_elements
: Count the number of non zero elements in an array -
argmax
: Returns the index of the max element in the array
Fit into the Python Ecosystem
There are several Python packages focused on array manipulation, such as numpy, which have extensive features. This package aims to recreate some of the basic array operations available in the numpy package (Numpy Developers, 2008-2024) for use in Data Science preprocessing workflows. The package is intended to focus only on the basic operations to make Data science worflows easier to understand and use for beginner programmers.
Installation
Installation can be done from pypi using the following command
pip install mds_array_manipulation
Installation from source
- Clone the github repository using:
git clone https://github.com/UBC-MDS/mds_array_manipulation.git
- Change to the project root directory
cd mds_array_manipulation
- You can install
mds_array_manipulation
package usingpoetry
poetry install
If you dont have poetry installed in your base environment, you can follow the installation guide for poetry.
Features
Contains functions: Searching, Sorting, Counting non-zero elements, Finding indices of max value. This package is a group-17 project for the UBC MDS DSCI 524 (Collaborative Software Development) course.
Dependencies
- Python 3 or greater
Usage
A full vignette can be found on the documentation site here
Example usage:
>>> import numpy as np
>>> from mds_array_manipulation.search_array import search_array
>>> from mds_array_manipulation.argmax import argmax
>>> from mds_array_manipulation.sort_array import sort_array
>>> from mds_array_manipulation.count_nonzero_elements import count_nonzero_elements
>>> arr = np.array([20, 10, 40, 30, 50, 90, 60])
>>> search_array(arr, 50)
4
>>> argmax(arr)
5
>>> sort_array(arr)
array([10, 20, 30, 40, 50, 60, 90])
>>> count_nonzero_elements(arr)
7
Running Unit Tests
Execute the following in the project root directory after the package has been installed:
poetry run pytest
To get the coverage report, run the following code:
poetry run pytest tests/ --cov=src/mds_array_manipulation/
Contributing
Interested in contributing? Check out the contributing guidelines. Please note that this project is released with a Code of Conduct. By contributing to this project, you agree to abide by its terms.
Contributors
- Sean McKay - @sean-m-mckay
- Kittipong Wongwipasamitkun (Jo) - @jokittipong
- Yan Zeng - @Owl64901
- Aishwarya Nadimpally - @Aishwarya120111
License
mds_array_manipulation
was created by Kittipong Wongwipasamitkun, Sean Mckay, Yan Zeng, Aishwarya Nadimpally. It is licensed under the terms of the MIT license for software code part including source code examples in the documentation and it is licensed under the terms of the Attribution-ShareAlike 4.0 International, for Parts Other than the Software Code (Package Documentation, Data, Text, and any Media). See LICENSE
.
Credits
mds_array_manipulation
was created with cookiecutter
and the py-pkgs-cookiecutter
template.
References
- Sedgewick, Robert (1983). Algorithms. Addison-Wesley. p. 95. ISBN 978-0-201-06672-2.
- NumPy Developers (2008-2024). NumPy documentation. Version: 2.0.dev0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mds_array_manipulation-0.0.10.tar.gz
.
File metadata
- Download URL: mds_array_manipulation-0.0.10.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f36f8847eb0f5cd4174b455d2436ef276a8b99d7cac5481954daecad6a486ee |
|
MD5 | 2f3eabe8b1741e259ccd6e0afb5f030c |
|
BLAKE2b-256 | a570216497396d50c906405de59120c65f5dd01d6f7850c9c115ab529b26fb4b |
File details
Details for the file mds_array_manipulation-0.0.10-py3-none-any.whl
.
File metadata
- Download URL: mds_array_manipulation-0.0.10-py3-none-any.whl
- Upload date:
- Size: 13.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 306a15742d8dee76246640f0f80dd0bad2d0f6b576a65c20ecb984c9a0dec972 |
|
MD5 | 6e1bc06bb91319901e3eeeff63705795 |
|
BLAKE2b-256 | 63194d6b81adb89d1cbcf0cf410853d6e1cfca679fb9935b141f425c833f7889 |