Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Mastering Julia
Mastering Julia

Mastering Julia: Enhance your analytical and programming skills for data modeling and processing with Julia , Second Edition

eBook
$24.99 $36.99
Paperback
$45.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with Print?

Product feature icon Instant access to your digital copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
Product feature icon Redeem a companion digital copy on all Print orders
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Shipping Address

Billing Address

Shipping Methods
Table of content icon View table of contents Preview book icon Preview Book

Mastering Julia

The Julia Environment

In this chapter, we will explore all you need to get started on Julia. Julia is a high-level, high-performance, dynamic programming language that focuses mainly on technical computing. Its primary feature is that, although it’s a scripting language, the code is compiled using low-level virtual machine (LLVM). This compilation creates code that corresponds to the underlying hardware/operating system and runs at similar speeds to other compiled languages, such as C/C++ and Fortran.

The chapter will cover the following main topics:

  • Acquiring and installing Julia
  • The philosophy behind Julia and comparison with other programming languages
  • Developing code using the REPL, code editors, and IDEs
  • Use of the package management system
  • Some simple coding in Julia
  • A quick look at some graphics

By the end of this chapter, you should have a grasp of the basics of Julia. All the topics introduced are covered in more detail in the later...

Julia 101

Julia can be downloaded from the main website (https://julialang.org) via the Download menu option. It is available for Windows, macOS, Linux, and FreeBSD, and the appropriate download bundles are provided for a current stable version, a long-term support (LTS) version, and the next release. At the time of writing, the stable release is 1.8.5, the LTS is 1.6.7, and the new beta release is 1.9.0. I will briefly cover installing and uninstalling later, although the Julia website is the best source of information.

It can be run using the Julia REPL, the VS Code editor, and a couple of web-based IDEs, Jupyter and Pluto, which we will discuss later in this chapter.

The previous edition used Julia v0.4, which was the stable version at the time, so a large amount has changed since then. When we hosted JuliaCon 2018, v1.0 was announced, promising fewer breaking changes, although these are not insignificant, and so far, a number of breaking changes have been introduced on each...

Overview of Julia

Julia was first released to the world in February 2012 after a couple of years of development at the Massachusetts Institute of Technology (MIT). This was followed by a couple of years of development at MIT. Later, in 2015, a commercial arm called Julia Computing was set up to acquire funding and provide consultancy and (some) enterprise packages; this was later renamed to JuliaHub to reflect the inclusion of a cloud computing platform facility, at present, hosted on Amazon Web Services (AWS). The use of the JuliaHub cloud is discussed in the last chapter of this book.

Most of Julia remains freely available and we will be concentrating on that here. As mentioned previously, version 1.0 was released in 2018 and, at present, is approaching v1.9.0, although there seem to be no plans for a main release to mark crossing the v2 barrier.

All the original developers – Jeff Bezanson, Stefan Karpinski, and Viral Shah – still maintain roles in the evolution...

Philosophy

Julia was designed with scientific computing in mind. The developers tell us that they came with a wide array of programming skills – Lisp, Python, Ruby, R, and MATLAB.

All needed a “fast” compiled language in the armory such, as C or Fortran as the current languages listed previously are pitifully slow. Here is a quote from the development team:

We want a language that’s open source, with a liberal license. We want the speed of C with the dynamism of Ruby. We want a language that’s homoiconic, with true macros like Lisp, but with obvious, familiar mathematical notation like MATLAB. We want something as usable for general programming as Python, as easy for statistics as R, as natural for string processing as Perl, as powerful for linear algebra as MATLAB, as good at gluing programs together as the shell. Something that is dirt simple to learn yet keeps the most serious hackers happy. We want it to be interactive and we want it compiled...

Not only, but also…

Julia was initially designed with scientific computing in mind and has made considerable strides in recent years in the fields of machine learning, optimization, solution of differential systems, and so on, all of which will be dealt with topics in the latter portion of this book.

However, Julia was originally seen as a vehicle for the emerging discipline of data science, possibly as an alternative or adjunct to more popular approaches, and it is worth remarking that practitioners in data science would be advised to see what Julia has to offer here as well.

Although the term data science was coined as early as the 1970s, it was only given prominence in 2001 by William S. Cleveland in his article, Data Science: An Action Plan for Expanding the Technical Areas of the Field of Statistics.

Almost in parallel with the development of Julia has been the growth in data science and the demand for data science practitioners.

What is data science?

People...

Why is Julia fast?

Julia’s “big” idea was to compile the program right down to the machine code level.

This was by incorporating the LLVM technology developed at Urbana-Champaign in the early 2000s. LLVM was originally termed as the low-level virtual machine but is now seen as a mnemonic. Conceptually, Julia Core is parsed via an internal Lisp (Femtolisp) translator and then compiled into an intermediate representation (IR), and then a machine-dependent LLVM compiler is invoked to produce the actual executable.

Although this represents an overhead, the code is cached (i.e., only compiled once), and much effort has gone into creating system images of the basic Julia system and caching individual packages. This makes execution times of the same “order” as C code, perhaps about (x2). C compilers are often better optimized, but LLVM is getting there quickly. So, Julia provides the holy grail of compact code as well as fast execution times. The downside...

Why use Julia?

Programming in Julia sometimes seems too good to be true. As it has been implemented in the last few years, many of the recent ideas in computer science design have been incorporated into the language and the developers have not been afraid to modify Julia’s structure and syntax on the run-up to version 1.0, even though this has led to deprecations and breaking changes.

We have pointed out previously that Julia creates executable code from scripts without a separate compilation step and this results in runtimes in the same order as those of C, Fortran, Java, and so on; however, in my opinion, that is not the main reason to use Julia. In this section, we will look at the other factors that make it a must-see for any programmer, analyst, and data scientist.

Julia is easy to learn

Writing simple code in Julia will be almost immediate for anyone with a grounding in Python, R, C, and so on, as this book will show.

As mentioned previously, the syntax is...

Getting started with Julia

Starting to program in Julia is very easy. Naturally, the first task you will need to do is to install Julia on your computer. Thankfully, this has been made very simple. In the early versions of Julia, it was necessary to build from source but was largely made redundant with binaries for the major operating systems.

We differentiate between several different sets of sources:

  • Windows
  • Apple macOS
  • Generic Linux (x86)
  • Generic Linux (ARM)
  • Free BSD
  • Source (necessary for other OSs)

As noted previously, the best place to look is the main Julia website (http://julialang.org), and navigate to the Downloads tab on the menu.

Windows and macOS are serviced by exe and dmg binaries, respectively. In these cases, installation is as simple as downloading the binary and clicking on it, and everything else is handled by the installer. As of v1.9, a source on Apple macOS is now available for the new M-series processors, in addition to...

Package management

We have noted that Julia uses GitHub as a repository for the language source and a large number of Julia packages are hosted there.

Note

Other sources for Julia packages may be found on Bitbucket, GitLab, and so on; see stackshare.io for a full discussion: https://stackshare.io/stackups/bitbucket-vs-github-vs-gitlab.

As a full discussion of the package system is given on the Julia website, here, we will cover some of the main commands to use.

In v1.0, a new package manager has been introduced. Given the increase in registered packages, now approaching 2,000, the previous version (which relied on separate invocations of Git) became very slow, especially when using Windows.

Earlier, a method using the Pkg interface for package management was discussed. An alternate approach is to use one of the subset systems from the REPL. This is one of three such subsystems:

Online Help: Triggered by typing ?

  • Command Shell: Triggered by typing ;
...

Final thoughts

All the material covered in this chapter will be looked at in more detail in the rest of the book. The aim was to indicate what a simple, straightforward, yet powerful language Julia is.

Julia has been maturing for nearly 12 years, and with the advent of the v1.0+ releases, the formation of the commercial company, JuliaHub (previously named Julia Computing), and the growth of modules (approaching 10,000 in number at the time of writing), it has never been a better time to study and perhaps adopt Julia as a programming language of choice.

The fact that all three of the original developers are still actively involved with the evolution of the language as well as playing major roles within JuliaHub is a testament to the faith that they and many others are putting in it

Summary

This chapter introduced you to Julia, and how to download it, install it, and build it from the source. We saw that the language is elegant, concise, and powerful, and introduced some simple Julia coding examples.

The next four chapters will discuss the features of Julia in more depth.

We looked at interacting with Julia via the command line (REPL) in order to use a random walk method to evaluate the price of an Asian option. Also, we discussed the use of the VS Code editor and two IDEs, IJulia and Pluto, as an alternative to the REPL.

Additionally, we reviewed the built-in package manager, how to add, update and remove modules, and then demonstrated the use of two graphics packages to display typical trajectories of the Asian option calculation. In later chapters, we will look at various other approaches in order to create display graphics and quality visualizations.

In the next chapter, we will begin our detailed look at coding in Julia by discussing its primitive...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Augment your basic computing skills with an in-depth introduction to Julia
  • Focus on topic-based approaches to scientific problems and visualisation
  • Build on prior knowledge of programming languages such as Python, R, or C/C++
  • Purchase of the print or Kindle book includes a free PDF eBook

Description

Julia is a well-constructed programming language which was designed for fast execution speed by using just-in-time LLVM compilation techniques, thus eliminating the classic problem of performing analysis in one language and translating it for performance in a second. This book is a primer on Julia’s approach to a wide variety of topics such as scientific computing, statistics, machine learning, simulation, graphics, and distributed computing. Starting off with a refresher on installing and running Julia on different platforms, you’ll quickly get to grips with the core concepts and delve into a discussion on how to use Julia with various code editors and interactive development environments (IDEs). As you progress, you’ll see how data works through simple statistics and analytics and discover Julia's speed, its real strength, which makes it particularly useful in highly intensive computing tasks. You’ll also and observe how Julia can cooperate with external processes to enhance graphics and data visualization. Finally, you will explore metaprogramming and learn how it adds great power to the language and establish networking and distributed computing with Julia. By the end of this book, you’ll be confident in using Julia as part of your existing skill set.

Who is this book for?

This book is not an introduction to computer programming, but a practical guide for developers who want to enhance their basic knowledge of Julia, or those wishing to augment their skill set by adding Julia to their existing roster of programming languages. Familiarity with a scripting language such as Python or R, or a compiled language such as C/C++, C# or Java, is a prerequisite.

What you will learn

  • Develop simple scripts in Julia using the REPL, code editors, and web-based IDEs
  • Get to grips with Julia's type system, multiple dispatch, metaprogramming, and macro development
  • Interact with data files, tables, data frames, SQL, and NoSQL databases
  • Delve into statistical analytics, linear programming, and optimization problems
  • Create graphics and visualizations to enhance modeling and simulation in Julia
  • Understand Julia's main approaches to machine learning, Bayesian analysis, and AI
Estimated delivery fee Deliver to Taiwan

Standard delivery 10 - 13 business days

$12.95

Premium delivery 5 - 8 business days

$45.95
(Includes tracking information)

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jan 19, 2024
Length: 506 pages
Edition : 2nd
Language : English
ISBN-13 : 9781805129790
Category :
Languages :

What do you get with Print?

Product feature icon Instant access to your digital copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
Product feature icon Redeem a companion digital copy on all Print orders
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Shipping Address

Billing Address

Shipping Methods
Estimated delivery fee Deliver to Taiwan

Standard delivery 10 - 13 business days

$12.95

Premium delivery 5 - 8 business days

$45.95
(Includes tracking information)

Product Details

Publication date : Jan 19, 2024
Length: 506 pages
Edition : 2nd
Language : English
ISBN-13 : 9781805129790
Category :
Languages :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 137.97
Unlocking the Secrets of Prompt Engineering
$44.99
Interactive Visualization and Plotting with Julia
$46.99
Mastering Julia
$45.99
Total $ 137.97 Stars icon

Table of Contents

13 Chapters
Chapter 1: The Julia Environment Chevron down icon Chevron up icon
Chapter 2: Developing in Julia Chevron down icon Chevron up icon
Chapter 3: The Julia Type System Chevron down icon Chevron up icon
Chapter 4: The Three Ms Chevron down icon Chevron up icon
Chapter 5: Interoperability Chevron down icon Chevron up icon
Chapter 6: Working with Data Chevron down icon Chevron up icon
Chapter 7: Scientific Programming Chevron down icon Chevron up icon
Chapter 8: Visualization Chevron down icon Chevron up icon
Chapter 9: Database Access Chevron down icon Chevron up icon
Chapter 10: Networks and Multitasking Chevron down icon Chevron up icon
Chapter 11: Julia’s Back Pages Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.3
(3 Ratings)
5 star 66.7%
4 star 0%
3 star 33.3%
2 star 0%
1 star 0%
Balaji Kothandaraman Feb 25, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Mastering Julia - Second Edition” is a comprehensive guide that empowers readers to enhance their analytical and programming skills using the Julia language. With updated insights and practical examples, this book covers a wide range of topics, from data modeling to high-performance computing. Whether you’re a beginner or an experienced user, this resource offers valuable insights and techniques for leveraging Julia effectively in data analysis and processing tasks.
Amazon Verified review Amazon
Stergios Papadimitriou May 31, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The book "Mastering Julia" is well written and it covers comprehensively the fundamentals of the Julia language. Julia is a relatively new language for technical computing that introducing a lot of novel features and it is extremely fast producing code competent with optimized C/C++. And it achieves this even being very high level with a fluent convenient syntax. I strongly recommend the book to all Amazon readers that want to either learn or to further improve their skills on the superb Julia language.
Amazon Verified review Amazon
Bookworm Oct 11, 2024
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
The book is riddled with errors and typos, which is surprising for a second edition. The author’s writing style is convoluted and difficult to follow. Additionally, the organization of topics and overall flow are poorly structured. Coverage of some of the topics is superficial at best. For new or novice coders, this book will likely cause significant frustration due to the time wasted trying to decipher confusing sentences and mismatched code examples and outputs.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is the digital copy I get with my Print order? Chevron down icon Chevron up icon

When you buy any Print edition of our Books, you can redeem (for free) the eBook edition of the Print Book you’ve purchased. This gives you instant access to your book when you make an order via PDF, EPUB or our online Reader experience.

What is the delivery time and cost of print book? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela
What is custom duty/charge? Chevron down icon Chevron up icon

Customs duty are charges levied on goods when they cross international borders. It is a tax that is imposed on imported goods. These duties are charged by special authorities and bodies created by local governments and are meant to protect local industries, economies, and businesses.

Do I have to pay customs charges for the print book order? Chevron down icon Chevron up icon

The orders shipped to the countries that are listed under EU27 will not bear custom charges. They are paid by Packt as part of the order.

List of EU27 countries: www.gov.uk/eu-eea:

A custom duty or localized taxes may be applicable on the shipment and would be charged by the recipient country outside of the EU27 which should be paid by the customer and these duties are not included in the shipping charges been charged on the order.

How do I know my custom duty charges? Chevron down icon Chevron up icon

The amount of duty payable varies greatly depending on the imported goods, the country of origin and several other factors like the total invoice amount or dimensions like weight, and other such criteria applicable in your country.

For example:

  • If you live in Mexico, and the declared value of your ordered items is over $ 50, for you to receive a package, you will have to pay additional import tax of 19% which will be $ 9.50 to the courier service.
  • Whereas if you live in Turkey, and the declared value of your ordered items is over € 22, for you to receive a package, you will have to pay additional import tax of 18% which will be € 3.96 to the courier service.
How can I cancel my order? Chevron down icon Chevron up icon

Cancellation Policy for Published Printed Books:

You can cancel any order within 1 hour of placing the order. Simply contact customercare@packt.com with your order details or payment transaction id. If your order has already started the shipment process, we will do our best to stop it. However, if it is already on the way to you then when you receive it, you can contact us at customercare@packt.com using the returns and refund process.

Please understand that Packt Publishing cannot provide refunds or cancel any order except for the cases described in our Return Policy (i.e. Packt Publishing agrees to replace your printed book because it arrives damaged or material defect in book), Packt Publishing will not accept returns.

What is your returns and refunds policy? Chevron down icon Chevron up icon

Return Policy:

We want you to be happy with your purchase from Packtpub.com. We will not hassle you with returning print books to us. If the print book you receive from us is incorrect, damaged, doesn't work or is unacceptably late, please contact Customer Relations Team on customercare@packt.com with the order number and issue details as explained below:

  1. If you ordered (eBook, Video or Print Book) incorrectly or accidentally, please contact Customer Relations Team on customercare@packt.com within one hour of placing the order and we will replace/refund you the item cost.
  2. Sadly, if your eBook or Video file is faulty or a fault occurs during the eBook or Video being made available to you, i.e. during download then you should contact Customer Relations Team within 14 days of purchase on customercare@packt.com who will be able to resolve this issue for you.
  3. You will have a choice of replacement or refund of the problem items.(damaged, defective or incorrect)
  4. Once Customer Care Team confirms that you will be refunded, you should receive the refund within 10 to 12 working days.
  5. If you are only requesting a refund of one book from a multiple order, then we will refund you the appropriate single item.
  6. Where the items were shipped under a free shipping offer, there will be no shipping costs to refund.

On the off chance your printed book arrives damaged, with book material defect, contact our Customer Relation Team on customercare@packt.com within 14 days of receipt of the book with appropriate evidence of damage and we will work with you to secure a replacement copy, if necessary. Please note that each printed book you order from us is individually made by Packt's professional book-printing partner which is on a print-on-demand basis.

What tax is charged? Chevron down icon Chevron up icon

Currently, no tax is charged on the purchase of any print book (subject to change based on the laws and regulations). A localized VAT fee is charged only to our European and UK customers on eBooks, Video and subscriptions that they buy. GST is charged to Indian customers for eBooks and video purchases.

What payment methods can I use? Chevron down icon Chevron up icon

You can pay with the following card types:

  1. Visa Debit
  2. Visa Credit
  3. MasterCard
  4. PayPal
What is the delivery time and cost of print books? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela