Home  >  Blog  >   SQL Server

R Data Tables Tutorial with Examples

Rating: 4
  
 
3554

 

R is one of the most powerful business analytics tool that has strong and seamless integration with SQL Server 2016, Tableau and many more tools alike. It has a very good integration with Big Data ecosystems as well and hence the need or R for analyzing data to deduce the details needed out of the available data set.

This article now introduces the data.table package which answers a lot of analytical skills that R has brought to the table, as it was considered that R couldn’t handle larger data sets ranging over 10GB in size. Let us take a closer look into how such a myth has been broken with this new package that R has to provide with.

To gain in-depth knowledge and be on par with practical experience, then explore SQL Server Training Course.

R Data Tables Tutorial for Beginners

R data.table packages:

One of the best ways to manage the data manipulations is to use the data.table packages made available by R itself. We have tried to provide valid examples to show case the usage of the various commands, within the boundaries of the article we will try to cover almost all possible syntaxes but it can never be considered a thorough documentation of all the features provided by R.

This package is an answer to the myth that R can’t handle data sets greater than 10GB size as it is not Memory efficient (the primary reason for this being, all the data gets loaded in to the RAM). The data.table package comes into play breaking the myth that it is no longer a limitation on the processing power of R. There has been successful benchmark tests done between data.table and dplyr packages and every such test is won by the data.table package. The efficiency of it is also compared against Python’s package (panda) with the same remarkable result.

Let us take a look at the syntax of data.table usage:

DT[ i , j , by]

i refers to the number of rows, also implies sub-setting rows. This is equivalent to WHERE clause on a traditional SQL statement

j refers to number of columns, also implies sub-setting columns (dropping / keeping). This is equivalent to SELECT clause on a traditional SQL statement.

by refers to adding a group so as to keep all the calculations within a group. This is equivalent to GROUP BY clause on a traditional SQL statement.

The syntax is not just restricted to these 3 parameters, there are more arguments that could be used in conjunction with data.table package which are listed as below:

with, which

allow.cartesian

roll, rollends

.SD, .SDcols

on, mult, nomatch

Checkout SQL Server Interview Questions

Read Data:

The fread() function in data.table package, is available to read or get data from your computer or from a web page. It is similar to the read.csv() function of base R.

mydata = fread("E:flights_2014.csv")

Describe Data:

From the CSV file that we read here, it contains a large amounts of data about the flight arrival and departure timings for year 2014. The nrow() and ncol() functions let you know that there are 253K rows and 17 columns of data available in the Input file that we have used.

nrow(mydata)

[1] 253316

ncol(mydata)

[1] 17

Keeping variables that contain 'arr'

We can use the %like% operator to find any pattern in the input file that we have mentioned. Alongside to the pattern, it is also similar to base R’s grepl() function or similar to the traditional SQL’s LIKE operator and similar to SAS’s CONTAINS function.

odata = mydata[,names(mydata) %like% "arr", with=FALSE]

MindMajix YouTube Channel

Rename Variables:

We can rename the variables with the function setnames(). We shall rename a variable ‘arr’ to ‘arrival’.

setnames(mydata, c("arr"), c("Arrival"))

and if you want to rename multiple variables, you can simply add variables on both the sides.

setnames(mydata, c("arr","origin"), c("Arrival", "origin.of.flight"))

Explore SQL Server Sample Resumes! Download & Edit, Get Noticed by Top Employers!Download Now!

 

GROUP BY (Within Group Calculation)

Let us summarize by group of origin, the command would be something as like shown below:

mydata[, .(mean_arr_delay = mean(arr_delay, na.rm = TRUE)), by = origin]

Merging / Joins

The process of merging in data.table is much similar to what the function merge() does in base R. The most common difference between these two is by default takes common key variables as the primary key to merge the datasets.

Let us take a small set of data for sample to show how the merge function works:

(dt1 <- data.table(A = letters[rep(1:3, 2)], X = 1:6, key = "A"))
(dt2 <- data.table(A = letters[rep(2:4, 2)], Y = 6:1, key = "A"))

Inner Join, returns all the matching records that are available in both the datasets.

merge(dt1, dt2, by="A")

Left Join, returns all the matched records from the left dataset of the relation which are also present in the right dataset.

merge(dt1, dt2, by="A", all.x = TRUE)

Right Join, returns all the matched records from the right dataset of the relation as per the example provided earlier.

merge(dt1, dt2, by="A", all.y = TRUE)

A Full Join returns all the rows when there is a match available in one of the datasets.

merge(dt1, dt2, all=TRUE)

R Data Table Examples

Based on the dataset that is made available, you make use of the following practice questions to deduce the R scripts to gain the details that is wanted out of the problem statement.

R Scripts CSV File

Dataset ->

1. Calculate total number of rows by month and then sort on descending order

mydata[, .N, by = month] [order(-N)]

2. Find top 3 months with high mean arrival delay

mydata[, .(mean_arr_delay = mean(arr_delay, na.rm = TRUE)), by = month][order(-mean_arr_delay)][1:3]

3. Find origin of flights having average total delay is greater than 20 minutes

mydata[, lapply(.SD, mean, na.rm = TRUE), .SDcols = c("arr_delay", "dep_delay"), by = origin][(arr_delay + dep_delay) > 20]

4.  Extract average of arrival and departure delays for carrier == 'DL' by 'origin' and 'dest' variables

mydata[carrier == "DL",

       lapply(.SD, mean, na.rm = TRUE),

       by = .(origin, dest),

       .SDcols = c("arr_delay", "dep_delay")]

5. Pull first value of 'air_time' by 'origin' and then sum the returned values when it is greater than 300

mydata[, .SD[1], .SDcols="air_time", by=origin][air_time > 300, sum(air_time)]

Related Page: The 4 Steps To Set-Up Your MySQL Reporting

Conclusion:

In this article, we have seen what R brings to the table with the most powerful data.table package. This package in specific provides two major advantages – lesser coding and lesser computing time / resources. Though not a very simple solution over the dplyr package provided by R as it works with decent speeds but is definitely slower than data.table packages.

List of Related Microsoft Certification Courses:

 SSIS Power BI
 SSAS SharePoint
 SSRS SQL Server DBA
 SCCM BizTalk Server
 Team Foundation Server BizTalk Server Administrator

 

 

Join our newsletter
inbox

Stay updated with our newsletter, packed with Tutorials, Interview Questions, How-to's, Tips & Tricks, Latest Trends & Updates, and more ➤ Straight to your inbox!

Course Schedule
NameDates
SQL Server DBA TrainingApr 30 to May 15View Details
SQL Server DBA TrainingMay 04 to May 19View Details
SQL Server DBA TrainingMay 07 to May 22View Details
SQL Server DBA TrainingMay 11 to May 26View Details
Last updated: 03 Apr 2023
About Author

Arogyalokesh is a Technical Content Writer and manages content creation on various IT platforms at Mindmajix. He is dedicated to creating useful and engaging content on Salesforce, Blockchain, Docker, SQL Server, Tangle, Jira, and few other technologies. Get in touch with him on LinkedIn and Twitter.

read more
Recommended Courses

1 / 15