November 2017
Beginner
316 pages
6h 40m
English
An area chart or area graph displays graphically quantitative data. It is based on a line chart. The area between an axis and a line are commonly emphasized with colors, textures, and hatchings. Commonly, we compare two or more quantities with an area chart.
Vega provides a function named areaplot. The following is a sample code depicting the usage of areaplot:
using Vega, KernelDensity, Distributions x = rand(Beta(3.0, 2.0), 10) k = kde(x) areaplot(x = k.x, y = k.density)

Read now
Unlock full access