Getting started with SQL with R
In today’s blog post, I’m showing you how to work with databases from within R. As always, you can find the video version of this blog post on YouTube:
Establish a connection
Let us start by setting up a database connection.
library(odbc)
lib... [Read more...]