#sample-rate #timestamp #frequency #format

infer_fs

Simple module to infer samplerate of a dataset

9 releases

0.3.0 Dec 14, 2019
0.2.0 Dec 14, 2019
0.1.6 Jan 28, 2016
0.1.1 Oct 22, 2015

#14 in #sample-rate

Download history 5/week @ 2024-02-26 2/week @ 2024-03-11 128/week @ 2024-04-01

130 downloads per month

MIT license

7KB
131 lines

Inferfs

Rust library to infer the samplerate of a dataset.

This will automatically skip one row (to account for potential headers), and given a timestamp column, will attempt to infer the samplerate over a given number of samples.

Right now, the timestamp is very roughly guessed based on some common formats that I receive. If a nice datetime guessing library comes out for Rust, I'll update to include, but that stuff is black magic.

Usage

Only a single function is publicly exported, infer_samplerate:

pub fn infer_samplerate(filename: String, delim: char,
                        num_rows: usize, col: usize)
-> Result<f64, Error>

Example

extern crate infer_fs;

fn main() {
    let filename = "some_sample_data.csv".to_string();
    let delim = ',';
    let num_rows = 100;
    let col = 0;

    match infer_fs::infer_samplerate(filename, delim, num_rows, col) {
        Ok(fs) => println!("Samplerate: {}", fs),
        Err(e) => println!("{}", e)
    }
}

Dependencies

~0.6–1MB
~14K SLoC