How to connect MySql database in R

Today I want to show you an example to connect Rstudio with MySQL server, to do that, yo will need the library RMySQL library(RMySQL) ## Loading required package: DBI First of all, we need to…

Leaflet in R

Hello, everyone!! Today I want to show you how to display your data on a map, to do that, we need these libraries: leaflet, googleway and magrittr. library(magrittr) library(leaflet) library(googleway) For this example we will…

Example of k-means in R

K-means Hi everyone, today we go to explain how to do a cluster segmentation, the term clustering refers to a wide range of unsupervised techniques whose purpose is to find patterns or groups (clusters) within…

How install Multiple libraries in R?

Many times when executing a code, we have to install and load the necessary libraries for that it works correctly. Today I want to show you a simple solution so that with just one function…

How to connect R with Twitter?

Hello everyone, today I want to explain you how to extract information from Twitter using R libraries. To start playing with the Twitter library we will start by registering at Twiter Developers . This is…