Code Monkey home page Code Monkey logo

csvplot's Introduction

csvplot

CSVデータをグラフにプロットする低機能cilクライアントツール

Setting

  pip3 install -r requirements.txt

で必要なパッケージをすべてインストールしましょう

Options

モード 効果
plot グラフを描画し保存するモード
オプション 効果 備考
--input_file 入力CSV名を指定する
--output_file 出力画像ファイル名を指定する
--xc X軸として使用するCSV系列を指定する
--yc Y軸として使用するCSV系列を指定する
--fontsize ラベルのフォントサイズを指定する
--color グラフの色を指定する パラメータはmatplotlib準拠
--xmax 描画するX軸の最大値を指定する
--xmin 描画するX軸の最小値を指定する
--ymax 描画するY軸の最大値を指定する
--ymin 描画するY軸の最小値を指定する

Usage

入力CSVの0列目がX軸系列,1列目がY軸系列としてグラフを適当に出力する

  python3 csvplot.py plot --input_file input.csv --output_file output.png

入力CSVの1列目がX軸系列,3列目がY軸系列としてグラフを適当に出力する

  python3 csvplot.py plot --input_file input.csv --output_file output.png --xc 1 --yc 3
  

X軸に"foo",Y軸に"bar"というラベルをつけ,赤色で描画

  python3 csvplot.py plot --input_file input.csv --output_file output.png --color r --xlabel foo --ylabel bar
  

X軸の範囲が-10〜10,Y軸の範囲が1〜-1として描画

  python3 csvplot.py plot --input_file input.csv --output_file output.png --xmax 10 --xmin -10 --ymax 1 --ymin -1
  

csvplot's People

Contributors

ekupura avatar

Watchers

 avatar

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.