Web graphics - HarlanH/julia GitHub Wiki
Web graphics
This page lists the roadmap, features, and wishlist of the Julia web interface. As for now, it supports "line" and "bar" plots.
Examples:
plot([1:10])
plot(cumsum(randn(100)), "line")
plot(rand(100)*10, "bar")
plot(randbit(200), randbit(200), "bar")
Note: "line" is the default type, if no plot type argument is passed.
Wishlist
- Dot / scatter plot
- Plot axis labelling
- Plot title
- Choice of colours
- Scaling
- Plot overlays