An open API service indexing awesome lists of open source software.

https://github.com/jesussantana/sampling

Perform Data Sampling with Python
https://github.com/jesussantana/sampling

preprocessing python random-sampling reservoir-sampling sampling smote-sampling stratified-sampling systematic-sampling

Last synced: 3 months ago
JSON representation

Perform Data Sampling with Python

Awesome Lists containing this project

README

        

# IT Academy - Data Science with Python
## Sprint 6: Sampling Methods

[![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/)
[![Made withJupyter](https://img.shields.io/badge/Made%20with-Jupyter-orange?style=for-the-badge&logo=Jupyter)](https://jupyter.org/try)
[![wakatime](https://wakatime.com/badge/github/jesussantana/Sampling.svg)](https://wakatime.com/badge/github/jesussantana/Sampling)

### Description
Learn how to sample data with Python.

### Level 1

- Exercise 1:
- Grab a sports-themed dataset you like. Performs a sampling of the data generating a simple random sample and a systematic sample.

### Level 2

- Exercise 2:
- It continues with the sports theme data set and generates a stratified sample and a sample using SMOTE (Synthetic Minority Oversampling Technique).

### Level 3

- Exercise 3:
- It continues with the sports theme dataset and generates a sample using the Reservoir sampling method.

### Targets

- Preprocess
- Sampling