Learning Path: R: Master R Data Analysis and Visualization
- Description
- Curriculum
- FAQ
- Reviews
R is one of the most comprehensible statistical tool for managing and manipulating data. With the ever increasing number of data, there is a very high demand of professionals who have got skills to analyze these data. If you’re looking forward to becoming an expert data analyst, then go for this Learning Path.
Packtās Video Learning Paths are a series of individual video products put together in a logical and stepwise manner such that each video builds on the skills learned in the video before it.
The highlights of this Learning Path are:
- Manipulate and analyze small and large sets of data with R
- Practice with real-world examples of data analysis and visualization
Letās take a quick look at your learning journey! This Learning Path begins with familiarizing you with the programming and statistics aspects of R. You will learn how CRAN works and why to use it. Acquire the ability to conduct data analysis in practical contexts with R, using core language packages and tools. You will then generate various plots in R using the basic R plotting techniques. Learn how to make plots, charts, and maps in step-by-step manner. Utilize R packages to add context and meaning to your data.
Moving ahead, the Learning Path will gradually take you through creating interactive maps using the googleVis package. Finally, you will generate chloropleth maps and contouring maps, bubble plots, and pie charts.
By the end of this Learning Path, you will be equipped with all data analysis and visualization techniques and build a strong foundation for moving into data science.
About the Author:
We have combined the best works of the following esteemed authors to ensure that your learning journey is smooth:
- Dr. Samik Sen is a theoretical physicist and loves thinking about hard problems. After his PH.D. in developing computational methods to solve problems for which no solutions existed, he began thinking about how to tackle math problems while lecturing. He has a YouTube channel associated with data science, which also provides a valuable engagement with people round the world who look at problems from a different perspective.
- Fabio Veronesi obtained a Ph.D. in digital soil mapping from Cranfield University and then moved to ETH Zurich, where he has been working for the past three years as a postdoc. In his career, Dr. Veronesi worked at several topics related to environmental research: digital soil mapping, cartography and shaded relief, renewable energy and transmission line siting. During this time, he specialized in the application of spatial statistical techniques to environmental data.
- Atmajit Singh Gohil works as a senior consultant at a consultancy firm in New York City. After graduating, he worked in the financial industry as a Fixed Income Analyst. He writes about data manipulation, data exploration, visualization, and basic R plotting functions on his blog. He has a master’s degree in financial economics from the State University of New York (SUNY), Buffalo. He also graduated with a Master of Arts degree in economics from the University of Pune, India.Ā
-
1The Course Overview
This video gives an overview of the entire course.
-
2What Is R?
The aim of the video is to introduce the section and overview of the language R.
-
3Getting and Setting Up R/Rstudio
We need to have the core programs before we can begin and in this video,we show where to get them.
-
4Using RStudio
In this video, we look at where to begin, so that we can get started.
-
5Packages
In this video, you will learn how RStudio has packages which avoid the problems and how we'll work on them.
-
6A Lot Is the Same
In this video, you will learn how similar R is to other languages.
-
7Familiar Building Programming Blocks
In this video, we see more familiar things in R.
-
8Putting It All Together
In this video, we are now ready to write programs.
-
9Core R Types
In this video, we will look at R data types which are new.
-
10Some Useful Operations
In this video, we will introduce some key commands to study data.
-
11More Useful Operations
In this video, we willintroduce various commands to help us pick out elements in which we are interested in.
-
12Titanic
In this video, we will investigate the Titanic dataset to see what it says.
-
13Tennis
In this video, we willadd a value by processing our data.
-
14It's Mostly Cleaning Up
In this video,we will download football results from a web page.
-
15The Most Widely Used Statistical Package
In this video, we will use R to do some statistics.
-
16Distributions
In this video, we will work with distributions using R.
-
17Time to Get Graphical
In this video, we will see some of R's graphical power.
-
18Plotting to Another Dimension
In this video, we will use the plotting package, ggplot2.
-
19Facets
In this video, we will see another plotting technique known as Facets.
-
20Test Your Knowledge
-
21The Course Overview
This video provides an overview of the entire course.
-
22Importing Data from Tables (read.table)
Accessing and importing open access environmental data is a crucial skill for data scientists. This section teaches you how to download data from the Web, import it in R and check it for consistency.
-
23Downloading Open Data from FTP Sites
Often times, datasets are provided for free, but on FTP, websites and practitioners need to be able to access them. R is perfectly capable of downloading and importing data from FTP sites.
-
24Fixed-Width Format
Not all text files can be opened easily with read.table. The fixed-width format is still popular but requires a bit more work in R.
-
25Importing with read.lines (The Last Resort)
Some data files are simply too difficult to be imported with simple functions. Luckily R provides the readLines function that allows importing of even the most difficult tables.
-
26Cleaning Your Data
Most open data is generated automatically and therefore may contain NA or other values that need to be removed. R has various functions to deal with this problem.
-
27Loading the Required Packages
To follow the exercises in the book viewers would need to install several important packages. This video will explain how to do and where to find information about them.
-
28Importing Vector Data (ESRI shp and GeoJSON)
Vector data are very popular and widespread and require some thoughts before importing. R has dedicated tools to import these data and work with them.
-
29Transforming from data.frame to SpatialPointsDataFrame
Often times, spatial data is provided in tables and needs to be transformed before it can be used for analysis. This can be done simply with the sp package.
-
30Understanding Projections
Geographical projections are very important and need to be handled carefully. R provides robust functions to do so successfully.
-
31Basic time/dates formats
Many datasets have a temporal component and practitioners need to know how to deal with it. R provides functions to do that in a very easy way.
-
32Introducing the Raster Format
Raster data is fundamentally different from vector data, since its values refer to specific areas (cells) and no single locations. This video will clearly explain this difference and teach users how to import this data in R.
-
33Reading Raster Data in NetCDF
The NetCDF format is becoming very popular, since it allows to store 4D datasets. This requires some technical skills to be accessed and this video will teach viewers to open and import NetCDF files.
-
34Mosaicking
Many raster datasets we download from the web are distributed in tiles, meaning a single raster for each subset of the area. To obtain a full raster for the study area we are interested to cover we can create a mosaic.
-
35Stacking to Include the Temporal Component
Mosaicking involves merging rasters based on location. Spatio-temporal datasets include also multiple rasters for the same location but different times. To merge these we need to use the stacking function.
-
36Exporting Data in Tables
Once we complete our analysis we often need to export our results and share them with colleagues. Popular formats are CSV and TXT files, which we learn how to export in this video.
-
37Exporting Vector Data (ESRI shp File)
If we work with vector data and we want to share the same format with our co-workers, we need to learn how to export in vector formats. This will be covered here.
-
38Exporting Rasters in Various Formats (GeoTIFF, ASCII Grids)
Many raster datasets we download from the Web are distributed in tiles, meaning a single raster for each subset of the area. To obtain a full raster for the study area we are interested in covering, we can create a mosaic.
-
39Exporting Data for WebGIS Systems (GeoJSON, KML)
Nowadays WebGIS applications are extremely popular. However, to use our data for WebGIS, we first need to export them in the correct format. This video will show how to do that.
-
40Preparing the Dataset
In the previous volume we explored the basics R functions and syntaxes to import various types of data. In this video we will put these functions together, and overcome some unexpected challenges, to import a full year of NOAA data.
-
41Measuring Spread (Standard Deviation and Standard Distance)
Before we can start analyzing our data we first need to properly understand what we are dealing with. The first step we have to take in this direction is describe our data with simple statistical indexes.
-
42Understanding Your Data with Plots
Numerical summaries are very useful but certainly not ideal to provide us with a direct feeling for the dataset in hands. Plots are much more informative and thus being able to produce them is certainly a crucial skill for data analysts.
-
43Plotting for Multivariate Data
For multivariate data we are often interested in assessing correlation between variables. This can be done in R very easily, and ggplot2 can also be used to produce more informative plots.
-
44Finding Outliers
Detecting outliers is another basic skill that every data analyst should have and master. R provides a lot of technical tools to help us in finding outliers.
-
45Introduction
This Section will be dedicated entirely to manipulating vector data. However, viewers first need to familiarize with some basic concepts, otherwise they may not be able to understand the rest of the section.
-
46Re-Projecting Your Data
In volume 1 we learned how to set the projection of our spatial data. However, in many cases we have to change this projection to successfully complete our analysis, and this requires some specific knowledge.
-
47Intersection
In many cases we may be interested in understanding the relation between spatial objects. One of such relations is the intersection, where we first want to know how two objects intersect, and then also extract only the part of one of these object that is included or outside the first.
-
48Buffer and Distance
Other important GIS operations that users have to master involve creating buffers and calculating distances between objects.
-
49Union and Overlay
The last two GIS functions that anybody should master are used to merge different geometries and spatial objects and overlay.
-
50Introduction
Raster objects are imported in R as rectangular matrixes. Users needs to be aware of this to properly work on these data, otherwise it may create some issues during the data analysis.
-
51Converting Vector/Table Data into Raster
In many cases open data are not distributed directly in raster formats and they need to be converted. This can be easily done with the right functions.
-
52Subsetting and Selection
Working with raster data often means extracting data for particular locations for further analysis, or crop the data to reduce their size. These are essential skills to master for any data analyst.
-
53Filtering
Sometimes we may need to filter out some values of our raster. It may seem tricky but only because it requires some skills.
-
54Raster Calculator
Creating new raster by calculating their value is extremely important for spatial data analysis. Doing so is simple but can be difficult to understand at first.
-
55Plotting Basics
Syntactically plotting spatial data in R is no different than plotting other types of data. Therefore, users need to know the basics of plotting before they can start making maps.
-
56Adding Layers
Creating multilayer plot can be difficult because we need to take care of several different aspects at once. However, learning that is very easy.
-
57Color Scale
When plotting spatial data we are often interested in using colors to show the values of some variables. This can be done manually but producing the right color scale may be difficult. This issue can be solved employing automatic methods.
-
58Creating Multivariate Plots
Creating multivariate plots not only means adding layers, but also using legends so that the viewer understands what the plot is showing. Creating legends in R is tricky because it requires a lot of tweaking, which will be explained here.
-
59Handling the Temporal Component
Temporal data need to be treated with specific procedures to highlight this additional component. This may be done in different ways depending on the scope of the analysis and R provides the right platform for this.
-
60Introduction
Being able to plot spatial data on web maps is certainly helpful and a crucial skill to have, but it can be difficult since it requires knowledge of different technologies. R makes this process very easy with dedicated functions that allow us to plot on web GIS services a breeze.
-
61Plotting Vector Data on Google Maps
Plotting data with the function plotGoogleMaps is not as easy as using the function plot. With a simple step by step guide we can achieve good command of the function, so that users can plot whatever data they choose.
-
62Adding Layers
An interactive map with just one layer is hardly useful for our purposes. Many times we are faced with the challenge of plotting several data at once. This requires some additional work and understanding, but it is definitely not hard in R.
-
63Plotting Raster Data on Google Maps
Plotting raster data on Google maps can be tricky. The function plotGoogleMaps does not handle rasters very well and if not done correctly the visualization will fail. This video will show users how to plot rasters successfully.
-
64Using Leaflet to Plot on Open Street Maps
Plotting on Google Maps is easy but Google Maps are commercial products therefore if we want to use the on our commercial website we would need to pay. OpenStreetMaps are free to use, therefore knowing how to use them is certainly an advantage.
-
65Introduction
Using open data for our analysis requires a deep knowledge of the data provider and the actual data we are using. Without this knowledge we may end up with erroneous results.
-
66Importing Data from the World Bank
Downloading data from the World Bank can be difficult since it requires users to know the acronym used to refer to these data. However, with some help this process becomes very easy.
-
67Adding Geocoding Information
To create a spatial map of the World Bank data we just have to download and we need to transform them into spatial data. However, in the dataset there are no coordinates of other information that may help us do that. The solution is to use the geocoding information from another dataset for this purpose.
-
68Concluding Remarks
Using the world bank data just to plot a static spatial map is very limitative. There are tons of other uses that researchers can do with these data and this video serves to provide some guidance into these additional avenue of research.
-
69Theoretical Background
Executing a point pattern analysis is technically easy in R. However, it is extremely important that practitioners understand the theory behind a point pattern analysis to ensure the correctness of the results. This video illustrates this theory.
-
70Introduction
In many cases practitioners start their analysis by applying complex statistics without even looking at their data. This is a problem that may affect the correctness of their results. This video will teach the correct order to start a point pattern analysis.
-
71Intensity and Density
Calculating intensity and density of a point pattern can be done in many ways. Finding the best for the dataset in hand can be challenging. The package spatstat and the literature provides some tips to do it correctly.
-
72Spatial Distribution
By looking at the plot we created in the previous videos, we started understanding the spatial distribution of our data. However, we now need to prove quantitatively that our ideas are correct.
-
73Modelling
In many cases we may want to model a point pattern to try and explain its location intensity in a way that would allow us to predict it outside our study area. This requires a general understanding of the modelling process, which will be explained here.
-
74Theoretical Background
Cluster analysis is commonly used in many fields. The problem is that in order to use it correctly we need to understand the clustering process, which is what this video is about.
-
75Data Preparation
As in every data analysis the data preparation plays a crucial role in guaranteeing its success. This video will prepare the data to be used for clustering.
-
76K-Means Clustering
Clustering algorithms are extremely simple to apply. The challenge is interpret their results and try to understand what the algorithm is telling us in terms of insights into our data.
-
77Optimal Number of Clusters
When applying the k-means algorithms we need to specify the number of clusters in which we want our dataset to be divided. However, since it is often used as explanatory test, we may not know the optimal number of clusters.
-
78Hierarchical Clustering
Hierarchical clustering allows us to see how all of our points are related to each other with a bottom-up approach. However, determining the optimal number of clusters is not so trivial with this method.
-
79Concluding
Determining the best clustering algorithm for our data is probably the most challenging part of such an analysis. This video will show the sort of reasoning users will need to make that decision.
-
80Theoretical Background
Time series analysis is another important technique to master. However, it requires some specific knowledge to understand the process and what this technique can actually do.
-
81Reading Time-Series in R
Time-series can be imported and analyzed using two formats: ts and xts. Both have their pros and cons and users need to be able to master both if they want to perform the best time-series analysis.
-
82Subsetting and Temporal Functions
Dealing with time-series sometimes means extracting data according to their location along the time line. This can be done in R but require some explanation to do it correctly.
-
83Decomposition and Correlation
Another important aspect of time-series analysis is decomposition and correlation. This allows us to draw important conclusions about our data. Technically this is not difficult to do, but it requires careful consideration if we want to do it right.
-
84Forecasting
The final step of time-series analysis is forecasting, where we try to simulate future events. This is extremely useful but requires adequate knowledge of the methods available, their pros and cons.
-
85Theoretical Background
There are numerous geostatistical interpolation techniques that can be used to map environmental data. Kriging is probably the most famous but it not the only one available. It is important to know every technique to understand where to use what.
-
86Data Preparation
The first challenge of any geostatistical analysis is the data preparation. We cannot just download data, but we need to clean them and prepare them for analysis.
-
87Mapping with Deterministic Estimators
Simple interpolation is easy to use and easy to interpret, therefore it is still commonly used. The package gstat allows us to use inverse distance, but to do so we need to follow some simple but precise rules.
-
88Analyzing Trend and Checking Normality
Before we can interpolate our data using kriging, we need to take care of some important steps. For example, we need to check if our data has a trend and then test for normality, because kriging can only be applied to normally distributed data.
-
89Variogram Analysis
Variogram is the keystone of kriging interpolation and users need to know how to compute and fit a model to it. These things require careful considerations that we are going to explore here.
-
90Mapping with kriging
In this video, all concepts learned previously will be merged to perform a kriging interpolation. The problem in this case is making sure that everything works correctly and the process is smooth.
-
91Theoretical Background
There are numerous statistical learning algorithms that can be used to map environmental data. It is important to know every technique to understand where to use what.
-
92Dataset
Once again for data analysis, getting to know our data is the most important thing we need to do once we start. This can be done by looking at the data provider and using some explanatory techniques.
-
93Linear Regression
Many users start a data analysis by testing complex methods. This is a problem though, because many times a simpler method can help us better understand our data. This video shows how to fit these simple models.
-
94Regression Trees
Regression trees are extremely powerful algorithms, but sometimes are considered as black boxes. This is a problem because only expert users can understand their output. This may change simply by understanding how these algorithms work.
-
95Support Vector Machines
-
96Test Your Knowledge
Social Network