Book Image

R Data Analysis Cookbook - Second Edition

By : Kuntal Ganguly, Shanthi Viswanathan, Viswa Viswanathan
Book Image

R Data Analysis Cookbook - Second Edition

By: Kuntal Ganguly, Shanthi Viswanathan, Viswa Viswanathan

Overview of this book

Data analytics with R has emerged as a very important focus for organizations of all kinds. R enables even those with only an intuitive grasp of the underlying concepts, without a deep mathematical background, to unleash powerful and detailed examinations of their data. This book will show you how you can put your data analysis skills in R to practical use, with recipes catering to the basic as well as advanced data analysis tasks. Right from acquiring your data and preparing it for analysis to the more complex data analysis techniques, the book will show you how you can implement each technique in the best possible manner. You will also visualize your data using the popular R packages like ggplot2 and gain hidden insights from it. Starting with implementing the basic data analysis concepts like handling your data to creating basic plots, you will master the more advanced data analysis techniques like performing cluster analysis, and generating effective analysis reports and visualizations. Throughout the book, you will get to know the common problems and obstacles you might encounter while implementing each of the data analysis techniques in R, with ways to overcoming them in the easiest possible way. By the end of this book, you will have all the knowledge you need to become an expert in data analysis with R, and put your skills to test in real-world scenarios.
Table of Contents (14 chapters)

Using the sp package to plot geographic data

The sp package has the necessary features to store and plot geographic data. In this recipe, we will use the sp package to plot imported shape files.

Getting ready

Install the packages rgdal and sp. If you have issues installing the rgdal package on Mac or Linux, refer to the earlier recipe for details.

Copy the following files to your R working directory:

  • ne_50m_admin_0_countries.shp
  • ne_50m_admin_0_countries.prj
  • ne_50m_admin_0_countries.shx
  • ne_50m_admin_0_countries.VERSION.txt
  • ne_50m_airports.shp
  • ne_50m_airports.prj
  • ne_50m_airports.shx
  • ne_50m_airports.VERSION.txt

We obtained these files from http://www.naturalearthdata.com/.

...