Skip to content

Latest commit

 

History

History
85 lines (63 loc) · 1.69 KB

README.md

File metadata and controls

85 lines (63 loc) · 1.69 KB

voir

Scripts for quickly generating standard plots from the command line.

Table of contents

histogram.R

Plot a histogram from a column of numbers

Usage

usage: histogram.R <file>

positional arguments:
  file               File of numerical values, one per line.

Example

histogram.R insert_size.txt

Example histogram

scatter.R

Plot a scatter plot from two columns of numbers

Usage

usage: scatter.R <file>

positional arguments:
  file               File with two columns of numerical values,
                       tab-delimited.

Example

scatter.R two_col.txt

Example scatter plot

heatscatter.R

Plot a heat scatter plot from two columns of numbers

Usage

usage: heatscatter.R <file>

positional arguments:
  file               File with two columns of numerical values,
                       tab-delimited.

Example

heatscatter.R two_col.txt

Example heat scatter plot

heatcontour.R

Plot a heat contour plot from two columns of numbers

Usage

usage: heatcontour.R <file>

positional arguments:
  file               File with two columns of numerical values,
                       tab-delimited.

Example

heatcontour.R two_col.txt

Example heat contour plot