All Projects → codekitchen → Pipeline

codekitchen / Pipeline

Licence: mit
the `pipeline` shell command

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Pipeline

Dataflowjavasdk
Google Cloud Dataflow provides a simple, powerful model for building both batch and streaming parallel data processing pipelines.
Stars: ✭ 854 (+408.33%)
Mutual labels:  data-analysis, data-mining
Etl unicorn
数据可视化, 数据挖掘, 数据处理 ETL
Stars: ✭ 156 (-7.14%)
Mutual labels:  data-analysis, data-mining
Vectorbt
Ultimate Python library for time series analysis and backtesting at scale
Stars: ✭ 855 (+408.93%)
Mutual labels:  data-analysis, data-mining
Sourced Ce
source{d} Community Edition (CE)
Stars: ✭ 153 (-8.93%)
Mutual labels:  data-analysis, data-mining
Rightmove webscraper.py
Python class to scrape data from rightmove.co.uk and return listings in a pandas DataFrame object
Stars: ✭ 125 (-25.6%)
Mutual labels:  data-analysis, data-mining
Spring2017 proffosterprovost
Introduction to Data Science
Stars: ✭ 18 (-89.29%)
Mutual labels:  data-analysis, data-mining
Ai For Security Learning
安全场景、基于AI的安全算法和安全数据分析学习资料整理
Stars: ✭ 986 (+486.9%)
Mutual labels:  data-analysis, data-mining
Elki
ELKI Data Mining Toolkit
Stars: ✭ 613 (+264.88%)
Mutual labels:  data-analysis, data-mining
Dex
Dex : The Data Explorer -- A data visualization tool written in Java/Groovy/JavaFX capable of powerful ETL and publishing web visualizations.
Stars: ✭ 1,238 (+636.9%)
Mutual labels:  data-analysis, data-mining
Tsrepr
TSrepr: R package for time series representations
Stars: ✭ 75 (-55.36%)
Mutual labels:  data-analysis, data-mining
Cookbook 2nd
IPython Cookbook, Second Edition, by Cyrille Rossant, Packt Publishing 2018
Stars: ✭ 704 (+319.05%)
Mutual labels:  data-analysis, data-mining
Awesome Ts Anomaly Detection
List of tools & datasets for anomaly detection on time-series data.
Stars: ✭ 2,027 (+1106.55%)
Mutual labels:  data-analysis, data-mining
Dataproofer
A proofreader for your data
Stars: ✭ 628 (+273.81%)
Mutual labels:  data-analysis, data-mining
Model Describer
model-describer : Making machine learning interpretable to humans
Stars: ✭ 22 (-86.9%)
Mutual labels:  data-analysis, data-mining
Nfstream
NFStream: a Flexible Network Data Analysis Framework.
Stars: ✭ 622 (+270.24%)
Mutual labels:  data-analysis, data-mining
Drugs Recommendation Using Reviews
Analyzing the Drugs Descriptions, conditions, reviews and then recommending it using Deep Learning Models, for each Health Condition of a Patient.
Stars: ✭ 35 (-79.17%)
Mutual labels:  data-analysis, data-mining
Cookbook 2nd Code
Code of the IPython Cookbook, Second Edition, by Cyrille Rossant, Packt Publishing 2018 [read-only repository]
Stars: ✭ 541 (+222.02%)
Mutual labels:  data-analysis, data-mining
Data Science With Ruby
Practical Data Science with Ruby based tools.
Stars: ✭ 549 (+226.79%)
Mutual labels:  data-analysis, data-mining
Pycm
Multi-class confusion matrix library in Python
Stars: ✭ 1,076 (+540.48%)
Mutual labels:  data-analysis, data-mining
Tipdm
TipDM建模平台,开源的数据挖掘工具。
Stars: ✭ 130 (-22.62%)
Mutual labels:  data-analysis, data-mining

The pipeline shell command

A utility to make building up a pipeline of shell commands easier, especially when doing data exploration.

If you've ever found yourself writing shell code, in an endless loop of piping output to less, scanning it over and making changes, then pipeline can make your life just a little bit more beautiful.

This is just a thin wrapper around your shell, not some totally new data mining tool. Launch pipeline, and start typing shell commands as usual. Every time you hit enter you'll see a one-screen preview of your output, similar to piping output to less, but your cursor will stay right where it was for further editing.

Ctrl-C when you're done.

Installation

Pipeline depends only on ncurses and readline (or libedit), both of which ship with MacOS and most common Linux distros.

MacOS

Install with Homebrew.

brew tap codekitchen/pipeline
brew install pipeline

From Source

You can download the latest release tarball from the releases page, or git clone the repo to build the master branch.

autoreconf -fi    # only if building from git, skip this for release tarballs
./configure
make

After make finishes, you'll be able to use ./pipeline. You can also install it using:

sudo make install

Windows

It might work under MinGW/GitBash? Please let me know.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].