A Julia package for generating visualizations in Vega
Getting Started
Visualization Primitives
Creating A Visualization From Scratch
Function Keywords:
x::AbstractVector
y::AbstractVector
color::AbstractVector
x = Array(Int, 900)
y = Array(Int, 900)
color = Array(Float64, 900)
t = 0
for i in 1:30
for j in 1:30
t += 1
x[t] = i
y[t] = j
color[t] = rand()
end
end
hm = heatmap(x = x, y = y, color = color)