{"id":8490,"date":"2019-05-08T14:00:02","date_gmt":"2019-05-08T08:30:02","guid":{"rendered":"http:\/\/ivyproschool.com\/blog\/?p=8490"},"modified":"2021-06-12T15:20:32","modified_gmt":"2021-06-12T09:50:32","slug":"6-useful-r-packages-for-data-science-and-ml","status":"publish","type":"post","link":"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/","title":{"rendered":"6 Useful R Packages for Data Science &#038; Machine Learning"},"content":{"rendered":"<p><a href=\"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science\/\"><br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-8500\" src=\"https:\/\/ivyproschool.com\/blog\/wp-content\/uploads\/2015\/08\/r-pkgs_2-2-e1557238340834.jpeg\" alt=\"\" width=\"600\" height=\"503\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>R can be used for various functionalities in the Data world. Right from Loading Data to modeling data to manipulating it and creating sophisticated visualizations, R can handle it all. There exist over 10,000 packages at our disposal that we can download and install and use according to our utility &amp; preference.<\/p>\n<p>&nbsp;<\/p>\n<p>The packages I have covered in this post fall broadly under four categories<\/p>\n<p>&nbsp;<\/p>\n<ol>\n<li>Exploratory Data Analysis &amp; Visualization<\/li>\n<li>Machine Learning<\/li>\n<li>Integration of R and Python<\/li>\n<li>Sentiment Analysis<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<h3>Exploratory Data Analysis &amp; Visualization<\/h3>\n<p>&nbsp;<\/p>\n<pre><strong>DataExplorer<\/strong><\/pre>\n<p><strong>What:\u00a0<\/strong><\/p>\n<p>A crucial phase of data analysis\/predictive modeling consists of Exploratory Data Analysis (EDA) where we get the first look at the data and thus generate relevant hypotheses and probably decide on the next steps as well. This R package automates the data exploration process so that users could focus on understanding data and extracting insights. The package scans and analyzes each variable, and visualizes them with typical graphical techniques. Common data processing methods are also available to treat and format data.<\/p>\n<p>The package can be installed directly from CRAN.<\/p>\n<p>install.packages(&#8220;DataExplorer&#8221;)<\/p>\n<p><strong>Why:\u00a0<\/strong><\/p>\n<p>(i) Use it to generate Report<\/p>\n<p>(ii) For Visualizations<\/p>\n<p>(iii) To make quick updates to data:<\/p>\n<p>(iv) It can be used to set values for missing observations as well.<\/p>\n<p>&nbsp;<\/p>\n<pre><strong>Esquisse<\/strong><\/pre>\n<p><strong>What:<\/strong><\/p>\n<p>Fancy creating charts in &#8216;ggplot2&#8217; with just drag and drop? Esquisse package in R is your answer. This add in allows you to interactively explore your data by visualizing it with the ggplot2 package. It can used to draw bar graphs, curves, scatter plots, histograms, then export the graph to &#8216;PNG&#8217; or &#8216;PowerPoint&#8217; or even retrieve the code generating the graph. Perfect for a quick and easy visualization of the data accordingly to their type.<\/p>\n<p>Install from CRAN with :<\/p>\n<p>install.packages(&#8220;esquisse&#8221;)<\/p>\n<p>&nbsp;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-8502\" src=\"https:\/\/ivyproschool.com\/blog\/wp-content\/uploads\/2015\/08\/rd-e1557268713889.png\" alt=\"\" width=\"600\" height=\"446\" \/><\/p>\n<h6 style=\"text-align: center;\"><em>Source : rdocumentation<\/em><\/h6>\n<p>&nbsp;<\/p>\n<p><strong>Why<\/strong> :<\/p>\n<p>(i) Quick exploration of the data to extract insights by creating simple plots, but for the other custom scales and other functionalities use ggplot2.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<h3>MACHINE LEARNING<\/h3>\n<pre>Mlr<\/pre>\n<p><strong>What<\/strong> :<\/p>\n<p>This is probably the interface to a large number of classification and regression techniques, including machine-readable parameter descriptions. There exists an experimental extension for survival analysis, clustering and general, also likelihood ratio statistics based on multinomial log-linear model.<\/p>\n<p>Try out doing generic resampling, including cross-validation, bootstrapping and subsampling. There exist all modern optimization techniques, for single- and multi-objective problems and even methods for feature selection.<\/p>\n<p><strong>Why<\/strong> :<\/p>\n<p>(i) \u00a0It can handle basically handle all your Machine Learning requirements.<\/p>\n<p>(ii) Creating multiple linear regression for familial or population data, converting predictions to a format package ROCR can handle, running machine learning benchmarks as distributed experiments, generating dummy variables for factor features, creating (spatial) resampling plot objects, getting underlying R model of learner integrated into mlr are just a few of the functions this package has built in.<\/p>\n<p>&nbsp;<\/p>\n<h3>INTEGRATION OF R AND PYTHON<\/h3>\n<pre>Reticulate<\/pre>\n<p><strong>What<\/strong> :<\/p>\n<p>It is what they call : \u201cInterface to Python\u201d modules, classes, and functions. The best part about this package is easily that when calling into &#8216;Python&#8217;, R data types are automatically converted to their equivalent &#8216;Python&#8217; types. When values are returned from &#8216;Python&#8217; to R they are converted back to R types.<\/p>\n<p>Install the\u00a0reticulate\u00a0package from CRAN as follows:<\/p>\n<p>install.packages(&#8220;reticulate&#8221;)<\/p>\n<p><strong>Why :<\/strong><\/p>\n<p>(i) It simplifies using R and Python in the same R Notebook.<\/p>\n<p>(ii) It can be used as unique identifer for Python object<\/p>\n<p>(iii) Install Python packages<\/p>\n<p>(iv) Convert between Python and R objects<\/p>\n<p>(v) Create NumPy arrays and convert the data type and in-memory ordering of existing NumPy arrays<\/p>\n<p>&nbsp;<\/p>\n<h3>Sentiment Analysis<\/h3>\n<pre>Rtweet\r\n<\/pre>\n<p><strong>What<\/strong> :<\/p>\n<p>Is a sentiment analysis on your to do list and you also like coding in R? Collecting Twitter Data was made simpler by this package.<\/p>\n<p>Disclaimer :{rtweet}}\u00a0should be used in strict accordance with Twitter\u2019s\u00a0<a href=\"https:\/\/developer.twitter.com\/en\/developer-terms\/more-on-restricted-use-cases\">developer terms<\/a>.<\/p>\n<p>To get the current released version from CRAN:<\/p>\n<p>install.packages(&#8220;rtweet&#8221;)<\/p>\n<p>&nbsp;<\/p>\n<p>For loading the rtweet package :<\/p>\n<p>library(rtweet)<\/p>\n<p><strong>Why :<\/strong><\/p>\n<p>(i) Search tweet<\/p>\n<p>(ii) Quickly visualize frequency of tweets over time using\u00a0ts_plot()<\/p>\n<p>(iii) Search tweets by geo-location<\/p>\n<p>(iv) Randomly sample (approximately 1%) from the live stream of all tweets<\/p>\n<p>(v) Stream all geo enabled tweets from a particular location or the get the most recent trends there<\/p>\n<p>(vi) Retrieve a list of all the accounts a\u00a0user follows or the\u00a0accounts following\u00a0a user basically everything you require.<\/p>\n<p>Twitter rate limits cap the number of search results returned to 18,000 every 15 minutes. To request more than that, simply set\u00a0retryonratelimit = TRUE\u00a0and rtweet will wait for rate limit resets for you.<\/p>\n<p>&nbsp;<\/p>\n<pre>Installr<\/pre>\n<p><strong>What :<\/strong><\/p>\n<p>No need to browse and look for the updated version of a new software. This package offers a set of R functions for the installation and updating of software\u00a0in R (on Windows) using updateR(). The updateR() command performs the following: finding the latest R version, downloading it, running the installer, deleting the installation file, copy and updating old packages to the new R installation.<\/p>\n<p>Installation<\/p>\n<p>To install the stable version on CRAN:<\/p>\n<p>install.packages(&#8216;installr&#8217;)<\/p>\n<p><strong>Why<\/strong> :<\/p>\n<p>(i) Shorter installation process (for Windows user )<\/p>\n<p>(ii) This package has two main goals:<\/p>\n<p>To make updating R (on windows) as easy as running a function.<\/p>\n<p>To make it as easy as possible to install all of the needed software for R development (such as git, RTools, etc), as well as for reproducible research using R (such as MikTeX, pandoc, etc).<\/p>\n<p>&nbsp;<\/p>\n<p>Another two packages I recently came across and had to cover in this post are:<\/p>\n<p>&nbsp;<\/p>\n<pre>Prophet\r\n<\/pre>\n<p><strong>What : <\/strong><\/p>\n<p>Prophet is an open source software created by Facebook, for forecasting time series data based on an additive model where non-linear trends are fit with yearly, weekly, and daily seasonality, plus holiday effects. It works best with time series that have strong seasonal effects and several seasons of historical data.<\/p>\n<p><strong>Why :<\/strong><\/p>\n<p>Prophet is robust to missing data and shifts in the trend, and typically handles outliers well.\u00a0It is available for download on\u00a0CRAN\u00a0and\u00a0PyPI.<\/p>\n<p>&nbsp;<\/p>\n<pre>RevoScaleR package\r\n<\/pre>\n<p><strong>What :<\/strong><\/p>\n<p>The RevoScaleR is a Microsoft package which provides new implementations of some of R&#8217;s statistical functions (<code>rxGlm<\/code> is the equivalent of R&#8217;s <code>glm<\/code>).<\/p>\n<p><strong>Why :<\/strong><\/p>\n<p>It is designed to work with data sizes much larger than available memory. It also uses parallel computing to speed things up when running on a multi-core server, in a Hadoop or Spark cluster, or in a SQL Server database.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>Companies around the globe are using R for various applications:<\/p>\n<ol>\n<li>AirBnb uses googlesheets and mailR packages in R to automate reporting<\/li>\n<li>Twitter uses R to monitor user experience<\/li>\n<li>R is being used by The New York Times to create infographics<\/li>\n<li>Amazon web services containerized applications with R for fraud detection<\/li>\n<li>The BBC Visual and Data Journalism team creates graphics in R<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<p>You can also check out the newest packages <a href=\"https:\/\/www.rdocumentation.org\/\">here<\/a>.<\/p>\n<p>&nbsp;<\/p>\n<blockquote><p>As a Data professional you need to continuously up your game, be in trend with the cutting edge technologies, latest industry trends because of how quickly the field is evolving. The courses at\u00a0<a href=\"https:\/\/ivyproschool.com\/\" data-qt-tooltip=\"ivyproschool.com\">Ivy Pro School<\/a>\u00a0are designed keeping that in mind.The modules are short duration to hold the interest but still are long enough to give good exposure and ability to explore further on not so easy applications like R, Python, SQL VBA etc<\/p><\/blockquote>\n<p>&nbsp;<\/p>\n<p>Learn from industry experts with extensive knowledge and experience in this field. Check out the <a href=\"https:\/\/ivyproschool.com\/our-courses\/big-data-and-analytics\/\">course<\/a> most suitable to you with hands on case studies and live industry projects.<\/p>\n<p>&nbsp;<\/p>\n<p>REFERENCES:<\/p>\n<p>https:\/\/www.rdocumentation.org\/packages\/mlr\/versions\/2.14.0<\/p>\n<p>https:\/\/cran.r-project.org\/doc\/manuals\/r-release\/R-lang.html<\/p>\n<p>https:\/\/github.com\/ThinkR-open\/companies-using-r<\/p>\n<p>&nbsp;<\/p>\n<p>Shromona Kahali \u2013 Content Strategist \u2013 IvyPro School<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; &nbsp; R can be used for various functionalities in the Data world. Right from Loading Data to modeling data to manipulating it and creating sophisticated visualizations, R can handle it all. There exist over 10,000 packages at our disposal that we can download and install and use according to our utility &amp; preference. &nbsp; The packages I have covered in this post fall broadly under four categories &nbsp; Exploratory Data Analysis &amp; Visualization Machine Learning Integration of R and Python Sentiment Analysis &nbsp; Exploratory Data Analysis &amp; Visualization &nbsp; DataExplorer What:\u00a0 A crucial phase of data analysis\/predictive modeling consists of Exploratory Data Analysis (EDA) where we get the first look at the data and thus generate relevant hypotheses and probably decide on the next steps as well. This R package automates the data exploration process so that users could focus on understanding data and extracting insights. The package scans and analyzes each variable, and visualizes them with typical graphical techniques. Common data processing methods are also available to treat and format data. The package can be installed directly from CRAN. install.packages(&#8220;DataExplorer&#8221;) Why:\u00a0 (i) Use it to generate Report (ii) For Visualizations (iii) To make quick updates to data: (iv) [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":8500,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[851,5,881,715,551],"tags":[22,56,467,504,140,716,357],"class_list":["post-8490","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-business-analytics","category-data-analytics","category-data-science","category-machine-learning-ai","category-tools-softwares","tag-analytics","tag-big-data-analytics","tag-data-science","tag-machine-learning","tag-predictive-analytics","tag-python","tag-r-programming"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Top 6 Useful R Packages for Data Science &amp; ML | Ivy Pro School<\/title>\n<meta name=\"description\" content=\"R can be used for various functions in the Data Science &amp; ML world; from Loading Data to modelling data to manipulating it and many more.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Top 6 Useful R Packages for Data Science &amp; ML | Ivy Pro School\" \/>\n<meta property=\"og:description\" content=\"R can be used for various functions in the Data Science &amp; ML world; from Loading Data to modelling data to manipulating it and many more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/\" \/>\n<meta property=\"og:site_name\" content=\"R vs Python: Which Analytics Tool Should You Choose for Data Science?\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/ivyproschool\" \/>\n<meta property=\"article:published_time\" content=\"2019-05-08T08:30:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-06-12T09:50:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ivyproschool.com\/blog\/wp-content\/uploads\/2015\/08\/r-pkgs_2-2-e1557238340834.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"503\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ivy Professional School\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ivyproschool\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ivy Professional School\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/6-useful-r-packages-for-data-science-and-ml\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/6-useful-r-packages-for-data-science-and-ml\\\/\"},\"author\":{\"name\":\"Ivy Professional School\",\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/#\\\/schema\\\/person\\\/31fdab8559dd3db99173764bfb60215d\"},\"headline\":\"6 Useful R Packages for Data Science &#038; Machine Learning\",\"datePublished\":\"2019-05-08T08:30:02+00:00\",\"dateModified\":\"2021-06-12T09:50:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/6-useful-r-packages-for-data-science-and-ml\\\/\"},\"wordCount\":1268,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/6-useful-r-packages-for-data-science-and-ml\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/08\\\/r-pkgs_2-2-e1557238340834.jpeg\",\"keywords\":[\"Analytics\",\"Big Data analytics\",\"data science\",\"machine learning\",\"predictive analytics\",\"python\",\"R Programming\"],\"articleSection\":[\"Business Analytics\",\"Data Analytics\",\"Data Science\",\"Machine Learning &amp; AI\",\"Tools &amp; Software\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/6-useful-r-packages-for-data-science-and-ml\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/6-useful-r-packages-for-data-science-and-ml\\\/\",\"url\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/6-useful-r-packages-for-data-science-and-ml\\\/\",\"name\":\"Top 6 Useful R Packages for Data Science & ML | Ivy Pro School\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/6-useful-r-packages-for-data-science-and-ml\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/6-useful-r-packages-for-data-science-and-ml\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/08\\\/r-pkgs_2-2-e1557238340834.jpeg\",\"datePublished\":\"2019-05-08T08:30:02+00:00\",\"dateModified\":\"2021-06-12T09:50:32+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/#\\\/schema\\\/person\\\/31fdab8559dd3db99173764bfb60215d\"},\"description\":\"R can be used for various functions in the Data Science & ML world; from Loading Data to modelling data to manipulating it and many more.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/6-useful-r-packages-for-data-science-and-ml\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/6-useful-r-packages-for-data-science-and-ml\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/6-useful-r-packages-for-data-science-and-ml\\\/#primaryimage\",\"url\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/08\\\/r-pkgs_2-2-e1557238340834.jpeg\",\"contentUrl\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/08\\\/r-pkgs_2-2-e1557238340834.jpeg\",\"width\":600,\"height\":503,\"caption\":\"6 Useful R Packages for Data Science and Machine Learning\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/6-useful-r-packages-for-data-science-and-ml\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"6 Useful R Packages for Data Science &#038; Machine Learning\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/\",\"name\":\"Ivy Professional School | Official Blog\",\"description\":\"Confused between R and Python for your data science journey? Discover the key differences in data visualization, handling capabilities, speed, and ease of learning.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/#\\\/schema\\\/person\\\/31fdab8559dd3db99173764bfb60215d\",\"name\":\"Ivy Professional School\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/866b09293f13d461b399bb9a40607e85623ede13d844f763bf665689cb0d1452?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/866b09293f13d461b399bb9a40607e85623ede13d844f763bf665689cb0d1452?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/866b09293f13d461b399bb9a40607e85623ede13d844f763bf665689cb0d1452?s=96&d=mm&r=g\",\"caption\":\"Ivy Professional School\"},\"sameAs\":[\"http:\\\/\\\/www.ivyproschool.com\",\"https:\\\/\\\/facebook.com\\\/ivyproschool\",\"https:\\\/\\\/instagram.com\\\/ivyproschool\",\"https:\\\/\\\/x.com\\\/ivyproschool\",\"https:\\\/\\\/youtube.com\\\/ivyproschool\"],\"url\":\"https:\\\/\\\/ivyproschool.com\\\/blog\\\/author\\\/prateek\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Top 6 Useful R Packages for Data Science & ML | Ivy Pro School","description":"R can be used for various functions in the Data Science & ML world; from Loading Data to modelling data to manipulating it and many more.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/","og_locale":"en_US","og_type":"article","og_title":"Top 6 Useful R Packages for Data Science & ML | Ivy Pro School","og_description":"R can be used for various functions in the Data Science & ML world; from Loading Data to modelling data to manipulating it and many more.","og_url":"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/","og_site_name":"R vs Python: Which Analytics Tool Should You Choose for Data Science?","article_author":"https:\/\/facebook.com\/ivyproschool","article_published_time":"2019-05-08T08:30:02+00:00","article_modified_time":"2021-06-12T09:50:32+00:00","og_image":[{"width":600,"height":503,"url":"https:\/\/ivyproschool.com\/blog\/wp-content\/uploads\/2015\/08\/r-pkgs_2-2-e1557238340834.jpeg","type":"image\/jpeg"}],"author":"Ivy Professional School","twitter_card":"summary_large_image","twitter_creator":"@ivyproschool","twitter_misc":{"Written by":"Ivy Professional School","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/#article","isPartOf":{"@id":"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/"},"author":{"name":"Ivy Professional School","@id":"https:\/\/ivyproschool.com\/blog\/#\/schema\/person\/31fdab8559dd3db99173764bfb60215d"},"headline":"6 Useful R Packages for Data Science &#038; Machine Learning","datePublished":"2019-05-08T08:30:02+00:00","dateModified":"2021-06-12T09:50:32+00:00","mainEntityOfPage":{"@id":"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/"},"wordCount":1268,"commentCount":0,"image":{"@id":"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/#primaryimage"},"thumbnailUrl":"https:\/\/ivyproschool.com\/blog\/wp-content\/uploads\/2015\/08\/r-pkgs_2-2-e1557238340834.jpeg","keywords":["Analytics","Big Data analytics","data science","machine learning","predictive analytics","python","R Programming"],"articleSection":["Business Analytics","Data Analytics","Data Science","Machine Learning &amp; AI","Tools &amp; Software"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/","url":"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/","name":"Top 6 Useful R Packages for Data Science & ML | Ivy Pro School","isPartOf":{"@id":"https:\/\/ivyproschool.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/#primaryimage"},"image":{"@id":"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/#primaryimage"},"thumbnailUrl":"https:\/\/ivyproschool.com\/blog\/wp-content\/uploads\/2015\/08\/r-pkgs_2-2-e1557238340834.jpeg","datePublished":"2019-05-08T08:30:02+00:00","dateModified":"2021-06-12T09:50:32+00:00","author":{"@id":"https:\/\/ivyproschool.com\/blog\/#\/schema\/person\/31fdab8559dd3db99173764bfb60215d"},"description":"R can be used for various functions in the Data Science & ML world; from Loading Data to modelling data to manipulating it and many more.","breadcrumb":{"@id":"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/#primaryimage","url":"https:\/\/ivyproschool.com\/blog\/wp-content\/uploads\/2015\/08\/r-pkgs_2-2-e1557238340834.jpeg","contentUrl":"https:\/\/ivyproschool.com\/blog\/wp-content\/uploads\/2015\/08\/r-pkgs_2-2-e1557238340834.jpeg","width":600,"height":503,"caption":"6 Useful R Packages for Data Science and Machine Learning"},{"@type":"BreadcrumbList","@id":"https:\/\/ivyproschool.com\/blog\/6-useful-r-packages-for-data-science-and-ml\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ivyproschool.com\/blog\/"},{"@type":"ListItem","position":2,"name":"6 Useful R Packages for Data Science &#038; Machine Learning"}]},{"@type":"WebSite","@id":"https:\/\/ivyproschool.com\/blog\/#website","url":"https:\/\/ivyproschool.com\/blog\/","name":"Ivy Professional School | Official Blog","description":"Confused between R and Python for your data science journey? Discover the key differences in data visualization, handling capabilities, speed, and ease of learning.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ivyproschool.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/ivyproschool.com\/blog\/#\/schema\/person\/31fdab8559dd3db99173764bfb60215d","name":"Ivy Professional School","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/866b09293f13d461b399bb9a40607e85623ede13d844f763bf665689cb0d1452?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/866b09293f13d461b399bb9a40607e85623ede13d844f763bf665689cb0d1452?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/866b09293f13d461b399bb9a40607e85623ede13d844f763bf665689cb0d1452?s=96&d=mm&r=g","caption":"Ivy Professional School"},"sameAs":["http:\/\/www.ivyproschool.com","https:\/\/facebook.com\/ivyproschool","https:\/\/instagram.com\/ivyproschool","https:\/\/x.com\/ivyproschool","https:\/\/youtube.com\/ivyproschool"],"url":"https:\/\/ivyproschool.com\/blog\/author\/prateek\/"}]}},"_links":{"self":[{"href":"https:\/\/ivyproschool.com\/blog\/wp-json\/wp\/v2\/posts\/8490","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ivyproschool.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ivyproschool.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ivyproschool.com\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/ivyproschool.com\/blog\/wp-json\/wp\/v2\/comments?post=8490"}],"version-history":[{"count":2,"href":"https:\/\/ivyproschool.com\/blog\/wp-json\/wp\/v2\/posts\/8490\/revisions"}],"predecessor-version":[{"id":10668,"href":"https:\/\/ivyproschool.com\/blog\/wp-json\/wp\/v2\/posts\/8490\/revisions\/10668"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ivyproschool.com\/blog\/wp-json\/wp\/v2\/media\/8500"}],"wp:attachment":[{"href":"https:\/\/ivyproschool.com\/blog\/wp-json\/wp\/v2\/media?parent=8490"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ivyproschool.com\/blog\/wp-json\/wp\/v2\/categories?post=8490"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ivyproschool.com\/blog\/wp-json\/wp\/v2\/tags?post=8490"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}