Examples

Line Graph

Basic Line

1
3
2
plot line -i simple.csv
Basic Line

with Header

x
1
3
2
plot line -i simple-with-header.csv --header
Basic Line with Header

Set Title, Label and Legend

plot line -i simple.csv --title "Basic Line" --x-label x --y-label y --legends line
Basic Line with Title and Label

Change line style

plot line -i simple.csv --marker o --linestyle dashed
Basic Line Changed Style

Multiple Lines

year,a,b
1990,20,4
1997,18,25
2003,489,281
2009,675,600
2014,1776,1900
plot line -i multiple.csv --header --index-col 0
plot line -i multiple.csv --header --index-col year
Multiple Lines

Bar Graph

Vertical Bar

plot bar -i random.csv --header
Vertical Bar

Horizontal Bar

plot bar -i random.csv --header --horizontal
Horizontal Bar

Stacked Bar

plot bar -i random.csv --header --stacked
Stacked Bar

Histogram

Basic Histogram

plot hist -i uniform.csv --header --use-cols 0 --no-legend
Basic Hist

Multiple Histogram

plot hist -i uniform.csv --header --alpha 0.5
Multiple Hist

Box Plot

plot box -i random.csv --header
Box Plot

Area Plot

plot area -i random.csv --header
Area Plot

Scatter Plot

plot scatter -i random.csv --header
Scatter

Pie Chart

plot pie -i with-index.csv --index-col 0 --header
Pie Chart