Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learning Jupyter 5 - Second Edition

You're reading from  Learning Jupyter 5 - Second Edition

Product type Book
Published in Aug 2018
Publisher
ISBN-13 9781789137408
Pages 282 pages
Edition 2nd Edition
Languages

Table of Contents (18) Chapters

Title Page
Packt Upsell
Contributors
Preface
Introduction to Jupyter Jupyter Python Scripting Jupyter R Scripting Jupyter Julia Scripting Jupyter Java Coding Jupyter JavaScript Coding Jupyter Scala Jupyter and Big Data Interactive Widgets Sharing and Converting Jupyter Notebooks Multiuser Jupyter Notebooks What's Next? Other Books You May Enjoy Index

Julia Vega plotting


Another popular graphics package is Vega. The main feature of Vega is the ability to describe your graphic by using language primitives such as JSON. Vega produces most of the standard plots. Here is an example script using Vega for a pie chart:

Pkg.add("Vega") 
using Vega 
stock = ["chairs", "tables", "desks", "rugs", "lamps"]; 
quantity = [15, 10, 10, 5, 20]; 
piechart(x = stock, y = quantity) 

The resultant output in Jupyter may look like the following screenshot:

Note

Note the INFO: Precompiling module Vega. package. Even though the package had been loaded as part of the install or update process, it still needed to adjust the library on first use.

The generated graphic produced under Jupyter is shown in the following screenshot

Vega gives you the option on the resultant display to Save as PNG. I think this is a useful feature, allowing you to embed the generated graphic(s) in another document:

 

 

Julia PyPlot plotting

Another plotting package available is PyPlot. PyPlot is...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}