Code Monkey home page Code Monkey logo

cli_stats's Introduction

Command-line Statistics Tools

A growing collection of handy scripts to do minor statistical computations and plotting from the command line.

Installation

Simply clone this repository and add the scripts directory to your PATH variable. For instance, in ~/.bashrc add:

export PATH=$PATH:/path/to/cli_stats/scripts

Examples

Paired t-test

This was added when I changed part of CleverCSV and wanted to test whether the runtime was significantly improved. I had a file old_runtime.log and a file new_runtime.log each in the format <filename>,<runtime> with observations for the same set of files (important for the paired t test!).

$ paste <(cat old_runtime.log | sort | cut -d',' -f2) <(cat new_runtime.log | sort | cut -d',' -f2) | paired_t_test
Test statistic: 3.6666 (p = 0.0003)

Notes

MIT License, written by Gertjan van den Burg.

cli_stats's People

Contributors

gjjvdburg avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

sandy4321

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.