Skip to content

mirestrepo/julia_plotting_tutorials

Repository files navigation

Plotting and Visualization in Julia

Introductory examples to plotting in Julia using varios libraries

Launch Live Notebooks View Static Notebooks
Binder nbviewer

Last Used:

  • July 20, 2018 - CEBI 0971 Summer@Brown: Biomedical Informatics and Data Science Skills for Biomedicine and Health Care
  • June 20, 2018 - BIOL6535 Preclinical Elective Summer 2018 at Brown University.

Materials:

Files in this directory:

  • Intro.ipynb -- Intro notebook
  • Intro.ipynb -- Julia script matching the corresponding notebook
  • plots_basics.ipynb - Jupyter notebook introducing Plots.jl
  • plots_basics.jl - Julia script matching the corresponding notebook
  • plotlyjs_basics.ipynb - Jupyter notebook introducing PlotlyJS.jl
  • plotlyjs_basics.jl - Julia script matching the corresponding notebook
  • seaborn_basics.ipynb - Jupyter notebook introducing Seaborn.jl
  • seaborn_basics.jl - Julia script matching the corresponding notebook

Dependencies:

See install_dependencies.jl if you need to troubleshoot.

# Packages to add - you may already have some of them
Pkg.add("PyPlot")
Pkg.add("Plots")
Pkg.add("StatPlots")
Pkg.add("PlotlyJS")
Pkg.add("Gadfly")
Pkg.add("Seaborn")
Pkg.add("Pandas")


# Test all used packages
using Plots
using StatPlots
using DataFrames, RDatasets
using PlotlyJS
using Gadfly

using Seaborn
using Pandas
using PyPlot
using PyCall