Back to all Blog Posts

Databases in R – Simple, Fast, and Secure

  • Coding
  • R
12. December 2017
·

Team statworx

For professionals working with large datasets in their daily routines, databases are an invaluable tool. As an electronic management system, databases are designed to efficiently handle large volumes of data while maintaining consistency and integrity. Additionally, within a company, a database ensures that all employees have access to a unified and up-to-date dataset. Any changes made to the database are immediately available to all stakeholders, which is especially beneficial when data is processed automatically by computer systems.

Mastering Databases in R with These Packages

R provides several packages for working with databases, making it easy to establish connections from within R and integrate databases into the data science workflow. For example, using the DBI and RMySQL packages, we can seamlessly connect to a test database (test_db) and explore the flights table, which contains information about departures from New York airports in 2013.

# Pakete laden 
library(DBI)    # Funktionen zum Umgang mit Datenbanken 
library(RMySQL) # MySQL Treiber 
library(dplyr)  # Für %>%  

# Konnektor-objekt erzeugen 
con % 
  dbGetQuery("SELECT month, day, carrier, origin, dest, air_time  
              FROM flights LIMIT 3") 

#   month day carrier origin dest air_time 
# 1     1   1      UA    EWR  IAH      227 
# 2     1   1      UA    LGA  IAH      227 
# 3     1   1      AA    JFK  MIA      160 

# Verbindung schließen 
dbDisconnect(con) 

# [1] TRUE 


As we can see, just a few lines of code are enough to view the contents of a database table. However, working with databases—especially via the R API—comes with a small challenge: SQL proficiency is required. While this isn’t necessarily a major hurdle, as SQL is an intuitive declarative language, it does present difficulties when dealing with large datasets. For simple queries like the one shown in the example, SQL is easy to understand. However, when datasets become too large to retrieve with a simple SELECT * FROM query, aggregations must be performed directly within the database. If these queries become complex, SQL can quickly turn into a real obstacle for data scientists.

At statworx , we frequently rely on databases to seamlessly integrate our predictive systems into our clients' data processes. However, you don’t have to be a SQL expert to work efficiently with databases in R. Several R packages help make database interactions safer, more stable, and easier to manage. Three packages are presented below that make working with databases safer, more stable and easier.

Managing Connections Efficiently with pool

When working with databases, technical considerations—such as connection management—are often critical. Managing connections dynamically, for example in a Shiny app, can be cumbersome. If not handled properly, it may even cause the app to crash, as some databases limit the number of simultaneous connections to 16 by default. To prevent this, connections must always be properly closed once they are no longer needed. In the example code above, closing the connection is done at the end.

To make connection management more stable, the pool package can be used.

The pool package creates a smart connection manager, known as an object pool. The advantage of this approach is that pool handles connection creation at the beginning of a session and efficiently manages them throughout, ensuring optimal utilization of database connections. A key benefit of pool is that its functionality closely mirrors the DBI package, making it easy to integrate into existing workflows. Let’s take a closer look at how this works with an example.

# Paket laden  
library(pool) 

# Pool-Objekt erzeugen 
pool % 
  dbGetQuery("SELECT month, day, carrier, origin, dest, air_time  
             FROM flights LIMIT 3") 
 
#   month day carrier origin dest air_time 
# 1     1   1      UA    EWR  IAH      227 
# 2     1   1      UA    LGA  IAH      227 
# 3     1   1      AA    JFK  MIA      160 

# Verbindung schließen 
poolClose(pool)  


As we can see, the syntax has hardly changed. The only difference is that we manage the connection pool using the dedicated functions dbPool() and poolClose(). The pool itself handles the connectors required for database queries. The diagram below illustrates this process schematically. In simple terms, the user sends a query to the pool. The pool then determines which connector to use to forward the query to the database and returns the result.

Hiding Credentials with config

When establishing a database connection, entering credentials is necessary, but they should be stored in a secure location. In the example above, this was not a concern because test_db was running locally on our computer, meaning the credentials were not sensitive. However, if the connection code needs to be shared with colleagues, it is best to retrieve credentials from an R object rather than hardcoding them directly.

With the config package, YAML configuration files can be read directly from R. These files can store database credentials and other sensitive settings in a human-readable format. To implement this, the first step is to create a configuration file named config.yml.

# Konfigurationsdatei erstellen  
default: 
  database_settings: 
    host: 127.0.0.1 
    dbname: test_db 
    user: root 
    pwd: root 
    port: 3306 
  other_setting: 
    filepath: /path/to/file 
    username: gauss


It is important to note that the first line of the file is mandatory. The YAML format offers the advantage of organizing settings thematically by introducing sub-lists. In the example, we created one sub-list containing database credentials (database_settings) and another for additional example settings (other_settings). In the next step, we can use the get() function to retrieve the database settings in a targeted manner.

# Paket laden 
library(config) 

# Datenbankeinstellungen laden 
config <- get(value = "database_settings", 
              file  = "~/Desktop/r-spotlight/config.yml") 

str(config) 

# List of 5 
# $ host  : chr "127.0.0.1" 
# $ dbname: chr "test_db" 
# $ user  : chr "root" 
# $ pwd   : chr "root" 
# $ port  : int 3306 

When creating a pool, we no longer have to disclose our sensitive data.

# Pool-Objekt erzeugen 
pool <- dbPool(drv      = RMySQL::MySQL(), 
               user     = config$user, 
               password = config$pwd, 
               host     = config$host, 
               port     = config$port, 
               dbname   = config$dbname) 

SQL Without SQL Thanks to dbplyr

dbplyr serves as the database backend for dplyr, ensuring that dplyr’s elegant syntax can also be used when working with database connection objects. Since dbplyr is integrated into dplyr, there is no need to load it separately.

# Paket laden 
library(dplyr) 

# Eine kleine Query mit dplyr 
pool %>%  
  tbl("flights") %>%  
  select(month, day, carrier, origin, dest, air_time) %>% 
  head(n = 3) 

# Source:   lazy query [?? x 6] 
# Database: mysql 5.6.35 [root@127.0.0.1:/test_db] 
#   month   day carrier origin  dest air_time 
#               
# 1     1     1      UA    EWR   IAH      227 
# 2     1     1      UA    LGA   IAH      227 
# 3     1     1      AA    JFK   MIA      160

It is noticeable that the result is not an R data frame (as indicated by the "Source: lazy query ..." message). Instead, the R syntax is translated into SQL and sent as a query to the database. This means that all computations are performed directly on the database. The underlying SQL command can be displayed using the show_query() function.

# SQL anzeigen lassen 

pool %>%  
  tbl("flights") %>%  
  select(month, day, carrier, origin, dest, air_time) %>% 
  head(n = 3) %>% 
  show_query() 

# :SQL: 
# SELECT `month` AS `month`, `day` AS `day`, `carrier` AS `carrier`,  
#        `origin` AS `origin`, `dest` AS `dest`, `air_time` AS `air_time` 
# FROM `flights` 
# LIMIT 3 

Admittedly, this was not a complex query, but the principle should be clear. With this tool, it is easy to write much more sophisticated queries efficiently. For example, we could now calculate the average flight distance per airline directly within the database.

# Eine etwas komplexere Query 
qry % 
  tbl("flights") %>%  
  group_by(carrier) %>% 
  summarise(avg_dist = mean(distance)) %>% 
  arrange(desc(avg_dist)) %>% 
  head(n = 3) 

qry 

# Source:     lazy query [?? x 2] 
# Database:   mysql 5.6.35 [root@127.0.0.1:/test_db] 
# Ordered by: desc(avg_dist) 
#   carrier avg_dist 
#          
# 1      HA 4983.000 
# 2      VX 2499.482 
# 3      AS 2402.000 


We can use collect() to save the result of the SQL statement as an R object.# Save SQL result in R

# SQL Resultat in R abspeichern 
qry %>% 
  collect() 

# A tibble: 3 x 2 
#   carrier avg_dist 
#          
# 1      HA 4983.000 
# 2      VX 2499.482 
# 3      AS 2402.000 


Conclusion

Working with databases can be made significantly easier and more secure by using the right packages. Thanks to dplyr, we no longer need to spend time memorizing SQL tutorials online just to write complex queries. Instead, we can focus on more important tasks.

References

  1. Boergs, Barbara (2017). Pool: Object Pooling. R Package Version 0.1.3. URL: https://CRAN.R-project.org/package=pool
  2. Datenbanken verstehen. Was ist eine Datenbank? URL: http://www.datenbanken-verstehen.de/datenbank-grundlagen/datenbank/
  3. Wickham, Hadley (2017a). Flights that Departed NYC in 2013. R Package. URL: https://CRAN.R-project.org/package=nycflights13
  4. Wickham, Hadley (2017b). dbplyr: A 'dplyr' Back End for Databases. R Package Version 1.1.0. URL: https://CRAN.R-project.org/package=dbplyr
Linkedin Logo
Marcel Plaschke
Head of Strategy, Sales & Marketing
schedule a consultation
Zugehörige Leistungen
No items found.

More Blog Posts

  • Coding
  • Data Science
  • Machine Learning
Zero-Shot Text Classification
Fabian Müller
17.4.2025
Read more
  • Coding
  • Python
Making Of: A Free API For COVID-19 Data
Sebastian Heinz
17.4.2025
Read more
  • Coding
  • Python
  • R
R and Python: Using Reticulate to Get the Best of Both Worlds
Team statworx
17.4.2025
Read more
  • Coding
  • Frontend
  • R
Getting Started With Flexdashboards in R
Thomas Alcock
17.4.2025
Read more
  • Artificial Intelligence
  • Machine Learning
  • Statistics & Methods
Machine Learning Goes Causal I: Why Causality Matters
Team statworx
17.4.2025
Read more
  • Coding
  • Data Visualization
  • R
Coordinate Systems in ggplot2: Easily Overlooked and Rather Underrated
Team statworx
17.4.2025
Read more
  • Data Engineering
  • R
  • Tutorial
How To Create REST APIs With R Plumber
Stephan Emmer
17.4.2025
Read more
  • Coding
  • Frontend
  • R
Dynamic UI Elements in Shiny – Part 1
Team statworx
17.4.2025
Read more
  • Recaps
  • statworx
statworx 2019 – A Year in Review
Sebastian Heinz
17.4.2025
Read more
  • Recap
  • statworx
STATWORX on Tour: Wine, Castles & Hiking!
Team statworx
17.4.2025
Read more
  • Recap
  • statworx
Off To New Adventures: STATWORX Office Soft Opening
Team statworx
17.4.2025
Read more
  • Recap
  • statworx
STATWORX on Tour: Year-End-Event in Belgium
Sebastian Heinz
17.4.2025
Read more
  • Recap
  • statworx
statworx summer barbecue 2019
Team statworx
17.4.2025
Read more
  • Coding
  • R
  • Tutorial
Compiling R Code in Sublime Text
Team statworx
17.4.2025
Read more
  • Coding
  • R
  • Tutorial
Make RStudio Look the Way You Want — Because Beauty Matters
Team statworx
17.4.2025
Read more
  • Recaps
  • statworx
2020 – A Year in Review for Me and GPT-3
Sebastian Heinz
17.4.2025
Read more
  • Coding
  • R
Master R shiny: One trick to build maintainable and scaleable event chains
Team statworx
17.4.2025
Read more
  • Coding
  • Python
  • Statistics & Methods
Ensemble Methods in Machine Learning: Bagging & Subagging
Team statworx
15.4.2025
Read more
  • Deep Learning
  • Python
  • Tutorial
Using Reinforcement Learning to play Super Mario Bros on NES using TensorFlow
Sebastian Heinz
15.4.2025
Read more
  • Coding
  • Machine Learning
  • R
Tuning Random Forest on Time Series Data
Team statworx
15.4.2025
Read more
  • Data Science
  • Statistics & Methods
Model Regularization – The Bayesian Way
Thomas Alcock
15.4.2025
Read more
  • Coding
  • Python
  • Statistics & Methods
How to Speed Up Gradient Boosting by a Factor of Two
Team statworx
15.4.2025
Read more
  • Coding
  • Frontend
  • R
Dynamic UI Elements in Shiny – Part 2
Team statworx
15.4.2025
Read more
  • Coding
  • R
Why Is It Called That Way?! – Origin and Meaning of R Package Names
Team statworx
15.4.2025
Read more
  • Data Engineering
  • Python
Access your Spark Cluster from Everywhere with Apache Livy
Team statworx
15.4.2025
Read more
  • Coding
  • Data Engineering
  • Data Science
Testing REST APIs With Newman
Team statworx
14.4.2025
Read more
  • Machine Learning
  • Python
  • R
XGBoost Tree vs. Linear
Fabian Müller
14.4.2025
Read more
  • Data Science
  • R
Combining Price Elasticities and Sales Forecastings for Sales Improvement
Team statworx
14.4.2025
Read more
  • Data Science
  • Machine Learning
  • R
Time Series Forecasting With Random Forest
Team statworx
14.4.2025
Read more
  • Data Visualization
  • R
Community Detection with Louvain and Infomap
Team statworx
14.4.2025
Read more
  • Machine Learning
Machine Learning Goes Causal II: Meet the Random Forest’s Causal Brother
Team statworx
11.4.2025
Read more
  • Coding
  • Data Visualization
  • R
Animated Plots using ggplot and gganimate
Team statworx
8.4.2025
Read more
  • Artificial Intelligence
AI Trends Report 2025: All 16 Trends at a Glance
Tarik Ashry
25.2.2025
Read more
  • Artificial Intelligence
  • Data Science
  • GenAI
How a CustomGPT Enhances Efficiency and Creativity at hagebau
Tarik Ashry
15.1.2025
Read more
  • Artificial Intelligence
  • Data Science
  • Human-centered AI
Explainable AI in practice: Finding the right method to open the Black Box
Jonas Wacker
15.1.2025
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Back to the Future: The Story of Generative AI (Episode 4)
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Back to the Future: The Story of Generative AI (Episode 3)
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Back to the Future: The Story of Generative AI (Episode 2)
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • Data Culture
  • Data Science
  • Deep Learning
  • GenAI
  • Machine Learning
AI Trends Report 2024: statworx COO Fabian Müller Takes Stock
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Custom AI Chatbots: Combining Strong Performance and Rapid Integration
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Back to the Future: The Story of Generative AI (Episode 1)
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • Data Culture
  • Human-centered AI
AI in the Workplace: How We Turn Skepticism into Confidence
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Generative AI as a Thinking Machine? A Media Theory Perspective
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • Data Culture
  • Human-centered AI
How managers can strengthen the data culture in the company
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
How we developed a chatbot with real knowledge for Microsoft
Isabel Hermes
6.12.2024
Read more
  • Data Science
  • Data Visualization
  • Frontend Solution
Why Frontend Development is Useful in Data Science Applications
Jakob Gepp
6.12.2024
Read more
  • Artificial Intelligence
  • Human-centered AI
  • statworx
the byte - How We Built an AI-Powered Pop-Up Restaurant
Sebastian Heinz
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
  • GenAI
The Future of Customer Service: Generative AI as a Success Factor
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • Human-centered AI
  • Strategy
The AI Act is here – These are the risk classes you should know
Fabian Müller
6.12.2024
Read more
  • Artificial Intelligence
  • Human-centered AI
  • Machine Learning
Gender Representation in AI – Part 2: Automating the Generation of Gender-Neutral Versions of Face Images
Team statworx
6.12.2024
Read more
  • Data Science
  • Human-centered AI
  • Statistics & Methods
Unlocking the Black Box – 3 Explainable AI Methods to Prepare for the AI Act
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Human-centered AI
  • Strategy
How the AI Act will change the AI industry: Everything you need to know about it now
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Recap
  • statworx
Big Data & AI World 2023 Recap
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
  • Statistics & Methods
A first look into our Forecasting Recommender Tool
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
On Can, Do, and Want – Why Data Culture and Death Metal have a lot in common
David Schlepps
6.12.2024
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
How to create AI-generated avatars using Stable Diffusion and Textual Inversion
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
  • Strategy
Decoding the secret of Data Culture: These factors truly influence the culture and success of businesses
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Human-centered AI
  • Machine Learning
GPT-4 - A categorisation of the most important innovations
Mareike Flögel
6.12.2024
Read more
  • Artificial Intelligence
  • Human-centered AI
  • Strategy
Knowledge Management with NLP: How to easily process emails with AI
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
3 specific use cases of how ChatGPT will revolutionize communication in companies
Ingo Marquart
6.12.2024
Read more
  • Artificial Intelligence
  • Machine Learning
  • Tutorial
Paradigm Shift in NLP: 5 Approaches to Write Better Prompts
Team statworx
6.12.2024
Read more
  • Recap
  • statworx
Ho ho ho – Christmas Kitchen Party
Julius Heinz
6.12.2024
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
Real-Time Computer Vision: Face Recognition with a Robot
Sarah Sester
6.12.2024
Read more
  • Recap
  • statworx
statworx @ UXDX Conf 2022
Markus Berroth
6.12.2024
Read more
  • Data Engineering
  • Tutorial
Data Engineering – From Zero to Hero
Thomas Alcock
6.12.2024
Read more
  • Recap
  • statworx
statworx @ vuejs.de Conf 2022
Jakob Gepp
6.12.2024
Read more
  • Data Engineering
  • Data Science
Application and Infrastructure Monitoring and Logging: metrics and (event) logs
Team statworx
6.12.2024
Read more
  • Data Engineering
  • Data Science
  • Python
How to Scan Your Code and Dependencies in Python
Thomas Alcock
6.12.2024
Read more
  • Cloud Technology
  • Data Engineering
  • Data Science
How to Get Your Data Science Project Ready for the Cloud
Alexander Broska
6.12.2024
Read more
  • Artificial Intelligence
  • Human-centered AI
  • Machine Learning
Gender Repre­sentation in AI – Part 1: Utilizing StyleGAN to Explore Gender Directions in Face Image Editing
Isabel Hermes
6.12.2024
Read more
  • R
The helfRlein package – A collection of useful functions
Jakob Gepp
6.12.2024
Read more
  • Data Engineering
  • Data Science
  • Machine Learning
Data-Centric AI: From Model-First to Data-First AI Processes
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Deep Learning
  • Human-centered AI
  • Machine Learning
DALL-E 2: Why Discrimination in AI Development Cannot Be Ignored
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Human-centered AI
statworx AI Principles: Why We Started Developing Our Own AI Guidelines
Team statworx
6.12.2024
Read more
  • Recap
  • statworx
5 highlights from the Zurich Digital Festival 2021
Team statworx
6.12.2024
Read more
  • Recap
  • statworx
Unfold 2022 in Bern – by Cleverclip
Team statworx
6.12.2024
Read more
  • Data Science
  • Human-centered AI
  • Machine Learning
  • Strategy
Why Data Science and AI Initiatives Fail – A Reflection on Non-Technical Factors
Team statworx
6.12.2024
Read more
  • Machine Learning
  • Python
  • Tutorial
How to Build a Machine Learning API with Python and Flask
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
  • Human-centered AI
  • Machine Learning
Break the Bias in AI
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Cloud Technology
  • Data Science
  • Sustainable AI
How to Reduce the AI Carbon Footprint as a Data Scientist
Team statworx
6.12.2024
Read more
  • Coding
  • Data Engineering
Automated Creation of Docker Containers
Stephan Emmer
6.12.2024
Read more
  • Coding
  • Data Visualization
  • R
Customizing Time and Date Scales in ggplot2
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
  • Machine Learning
5 Types of Machine Learning Algorithms With Use Cases
Team statworx
6.12.2024
Read more
  • Coding
  • Machine Learning
  • Python
Data Science in Python - Getting started with Machine Learning with Scikit-Learn
Team statworx
6.12.2024
Read more
  • Recap
  • statworx
2022 and the rise of statworx next
Sebastian Heinz
6.12.2024
Read more
  • Recap
  • statworx
As a Data Science Intern at statworx
Team statworx
6.12.2024
Read more
  • Coding
  • Data Science
  • Python
How to Automatically Create Project Graphs With Call Graph
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
  • Human-centered AI
  • Machine Learning
  • statworx
Column: Human and machine side by side
Sebastian Heinz
6.12.2024
Read more
  • Data Engineering
  • Data Science
  • Machine Learning
Deploy and Scale Machine Learning Models with Kubernetes
Team statworx
6.12.2024
Read more
  • Coding
  • Python
  • Tutorial
statworx Cheatsheets – Python Basics Cheatsheet for Data Science
Team statworx
6.12.2024
Read more
  • Cloud Technology
  • Data Engineering
  • Machine Learning
3 Scenarios for Deploying Machine Learning Workflows Using MLflow
Team statworx
6.12.2024
Read more
  • Data Science
  • statworx
  • Strategy
STATWORX meets DHBW – Data Science Real-World Use Cases
Team statworx
6.12.2024
Read more
  • Coding
  • Deep Learning
Car Model Classification I: Transfer Learning with ResNet
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
Car Model Classification IV: Integrating Deep Learning Models With Dash
Dominique Lade
6.12.2024
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
Car Model Classification III: Explainability of Deep Learning Models With Grad-CAM
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Coding
  • Deep Learning
Car Model Classification II: Deploying TensorFlow Models in Docker Using TensorFlow Serving
No items found.
6.12.2024
Read more
  • AI Act
Potential Not Yet Fully Tapped – A Commentary on the EU’s Proposed AI Regulation
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Deep Learning
  • statworx
Creaition – revolutionizing the design process with machine learning
Team statworx
6.12.2024
Read more
  • Data Science
  • Deep Learning
The 5 Most Important Use Cases for Computer Vision
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
  • Machine Learning

Generative Adversarial Networks: How Data Can Be Generated With Neural Networks
Team statworx
6.12.2024
Read more
This is some text inside of a div block.
This is some text inside of a div block.