This notebook provides a few examples of the shared graphing utilities within AWASH.
Graphing functions are provided in forms that use either R or native Julia Plots commands. If RCall
is installed, then loading graphing.jl
will load the R versions; otherwise, the Plots versions will be used.
Below we will use the constituent graphing-rcall.jl
and graphing-native.jl
libraries separately, to show how each looks.
In [4]:
using DataFrames
counties = readtable("../data/global/counties.csv")
counties[:value] = counties[:state];
In [16]:
include("../src/lib/graphing-native.jl")
Out[16]:
In [18]:
usmap(counties)
Out[18]: