Skip to main content

Create random samples from CSV file

Project description

## csvsample

``csvsample`` extracts some rows from CSV file to create randomly sampled CSV.

### Features

* The size of original file does not need to be specified beforehand.
It means that the sampling process can be applied to data stream with
unknown size such as system logs, no matter how large the amount of data
is.
* All methods accepts optional ``seed`` value. The same data set with the
same sampling rate always yields exactly the same result, which is good
for reproducibility.


### Install

You can install ``csvsample`` via ``pip``:

pip install csvsample


### API

``csvsample.sample()`` is the main API:

csvsample.sample(lines, sampling_method, **kwargs)

``lines`` can be any ``iterable`` containing valid CSV rows including header
row.

``sampling_method`` should be one of followings:

* ``random``
* ``hash``
* ``reservoir``

``random`` sampling method performs random sampling using pseudo random number
generator:

import csvsample

with open('input.csv', 'r') as i:
with open('output.csv', 'w') as o:
o.writelines(csvsample.sample(i, 'random', sample_rate=0.1))

``hash`` sampling method performs hash-based sampling using extremely-fast hash
function.

Let's say that instead of saving all users' log, you want to randomly select
10% of users and only save logs of those selected users. Simple random sampling
won't work. You can use hash-based sampling. "Consistent" nature of the
algorithm guarantees that any user ID selected once will always be selected
again:

sampled = csvsample.sample(lines, 'hash', sample_size=0.1, col='user_id')

``reservoir`` sampling method performs reservoir sampling. Let's say that you
have an URL of 100GB csv file. Since you don't have enough disk space, you just
want to save small portion of sample which is representative and unbiased.

[reservoir sampling](https://en.wikipedia.org/wiki/Reservoir_sampling) method
allows you to acquire random sample without saving entire data first:

sampled = csvsample.sample(lines, 'reservoir', sample_size=1000)

Now ``sampled`` variable contains exactly 1,000 randomly selected lines.

### Helpers

There are some convenience helpers:

* ``csvsample.sample_url(url, sampling_method, **kwargs)`` read CSV from given
``url``. You can specify character set encoding via ``encoding`` keyword
argument. (default: ``utf-8``)

``csvsample.sample()`` and other helpers return a generator containing sampled
CSV rows including header row. The generator contains special function
``to_buf()`` which converts itself into ``io.StringIO`` instance so that you can
pass the sampled CSV to other libraries such as Pandas:

import csvsample
import pandas as pd

sampled = csvsample.sample_url(url, 'random', sample_rate=0.1)
df = pd.read_csv(sampled.to_buf())


### Command-line interface

``csvsample`` also provides command-line interface.

Following URL contains a CSV file from [DataHub](https://datahub.io/):

> curl -sL https://bit.ly/2ItnHvK | head
region,year,population
WORLD,1950,2536274.721
WORLD,1951,2583816.786
WORLD,1952,2630584.384
WORLD,1953,2677230.358

A number of rows including header is 18019:

> curl -sL https://bit.ly/2ItnHvK | wc -l
18019

Let's make 10% of random sample:

> curl -sL https://bit.ly/2ItnHvK | csvsample random 0.1 > sample.csv

> wc -l sample.csv
1777 sample.csv

> head -n 5 sample.csv
region,year,population
WORLD,1952,2630584.384
WORLD,1972,3851545.181
WORLD,1977,4229201.257
WORLD,1988,5148556.956

You may use reservoir sampling method to obtain exact number of rows:

> curl -sL https://bit.ly/2ItnHvK | csvsample reservoir 100 > sample.csv

> wc -l sample.csv
100 sample.csv


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

csvsample-0.1.4.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

csvsample-0.1.4-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file csvsample-0.1.4.tar.gz.

File metadata

  • Download URL: csvsample-0.1.4.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for csvsample-0.1.4.tar.gz
Algorithm Hash digest
SHA256 8ff739851b822a2842eab162fe574c4dedb1c12bf8f45312490c4e5f1b7a586f
MD5 e4f21712e5e565ba263915e6c03c1a94
BLAKE2b-256 c75774f945a23c869e72171b5941e736e8307fa561fffc009ae78656c4514c9b

See more details on using hashes here.

File details

Details for the file csvsample-0.1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for csvsample-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 d1b878ff44164da5737996efa4272b2dd88f2c7b4fb51d887c350af53a12485b
MD5 7a629be1f9e53b51c8e1b104804d91f4
BLAKE2b-256 1d416b1b6ed3e25eaa6ab7d3ba00e828718bbab090041b3af0cb2236fc0922a2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page