Book Image

Mathematica Data Visualization

By : Nazmus Saquib
Book Image

Mathematica Data Visualization

By: Nazmus Saquib

Overview of this book

Table of Contents (12 chapters)

Preface

Mathematica Data Visualization was written with one goal in mind—teaching the reader how to write interactive visualization programs seamlessly using Mathematica. Mathematica is the programming language of choice for many data analysts, mathematicians, scientists, engineers, and business analysts. It offers a powerful suite of data analysis and data mining packages, along with a very rich data visualization framework for its users.

After reading this book and working with the code examples provided, you will be proficient in building your own interactive data visualizations. You will have a good understanding of the different kinds of data that you may encounter as a data visualization expert, along with a solid foundation on the techniques of visualizing such data using Mathematica.

Whenever needed, this book teaches the essential theory behind any advanced concept, so a beginner in data visualization will not feel uncomfortable tackling the material. Other than traditional plots, this book teaches how to build advanced visualizations from scratch, such as chord diagrams, maps, protein molecule visualizations, and so on.

What this book covers

Chapter 1, Visualization as a Tool to Understand Data, introduces the reader to the world of data visualization. The importance of visualization is discussed, along with the description of different datasets that will be covered.

Chapter 2, Dissecting Data Using Mathematica, gives a short introduction to Mathematica programming in the context of data analysis and operations. It also introduces the readers to basic plots.

Chapter 3, Time Series and Scientific Visualization, deals with time series and scalar fields, detailing some methods of visualizing these types of data in Mathematica.

Chapter 4, Statistical and Information Visualization, teaches some methods of statistical and information visualization using several mini projects.

Chapter 5, Maps and Aesthetics, develops a map visualization using a geographic shape file. Some essential data visualization aesthetics are also discussed.

What you need for this book

You will require a computer with an installation of the latest version (10) of Mathematica. The notebooks were tested only with Versions 9 and 10. There are a small number of functions that are only present in Version 10, but almost all of the code listings will work in Versions 8 and 9 otherwise. The codes will work with both the student and Pro versions. If you do not have access to Mathematica, you can still view the code and interact with the visualizations using the freely downloadable CDF player from the Wolfram Mathematica website (http://www.wolfram.com/cdf-player/).

Who this book is for

This book is aimed at people who are familiar with basic programming and high school mathematics, and are enthusiastic to learn about data visualization and Mathematica. It does not assume any prior knowledge of advanced data analysis or statistical techniques. Familiarity with a programming language may prove to be useful, but it is not essential. For beginners in Mathematica, Chapter 2, Dissecting Data Using Mathematica, provides a short primer on the essentials of Mathematica programming. Readers who are already familiar with Mathematica may skip the first half of Chapter 2, Dissecting Data Using Mathematica.

Conventions

In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.

Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "The EdgeForm[None] function is used to ask Graphics to not render the polygon boundaries."

A block of code is set as follows:

SetDirectory[ NotebookDirectory[] ]
shpdat = Import["data/usa_state_shapefile.shp", "Data"]
names = shpdat[[1, 4, 2, 2, 2]];
polys = "Geometry" /. shpdat[[1]]
filenames = Table["data/usgs_state_" <> ToString[i] <> ".csv", {i, 2001, 2010}]

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

SectorChart[{data1, data2, …}, options]

New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "The surface will represent the points in 3D space that has the same potential, the potential value of interest being selectable from the drop-down menu named Contour."

Note

Warnings or important notes appear in a box like this.

Tip

Tips and tricks appear like this.

Reader feedback

Feedback from our readers is always welcome. Let us know what you think about this book—what you liked or may have disliked. Reader feedback is important for us to develop titles that you really get the most out of.

To send us general feedback, simply send an e-mail to , and mention the book title via the subject of your message.

If there is a topic that you have expertise in and you are interested in either writing or contributing to a book, see our author guide on www.packtpub.com/authors.

Customer support

Now that you are the proud owner of a Packt book, we have a number of things to help you to get the most from your purchase.

Downloading the example code

You can download the example code files for all Packt books you have purchased from your account at http://www.packtpub.com. If you purchased this book elsewhere, you can visit http://www.packtpub.com/support and register to have the files e-mailed directly to you.

Downloading the color images of this book

We also provide you a PDF file that has color images of the screenshots/diagrams used in this book. The color images will help you better understand the changes in the output. You can download this file from: http://www.packtpub.com/sites/default/files/downloads/2999OT_coloredimages.PDF.

Errata

Although we have taken every care to ensure the accuracy of our content, mistakes do happen. If you find a mistake in one of our books—maybe a mistake in the text or the code—we would be grateful if you would report this to us. By doing so, you can save other readers from frustration and help us improve subsequent versions of this book. If you find any errata, please report them by visiting http://www.packtpub.com/submit-errata, selecting your book, clicking on the errata submission form link, and entering the details of your errata. Once your errata are verified, your submission will be accepted and the errata will be uploaded on our website, or added to any list of existing errata, under the Errata section of that title. Any existing errata can be viewed by selecting your title from http://www.packtpub.com/support.

Piracy

Piracy of copyright material on the Internet is an ongoing problem across all media. At Packt, we take the protection of our copyright and licenses very seriously. If you come across any illegal copies of our works, in any form, on the Internet, please provide us with the location address or website name immediately so that we can pursue a remedy.

Please contact us at with a link to the suspected pirated material.

We appreciate your help in protecting our authors, and our ability to bring you valuable content.

Questions

You can contact us at if you are having a problem with any aspect of the book, and we will do our best to address it.