R Programming

The substring() function in R - Things to know — step-by-step DevOps tutorial on Progressive Robot

The substring() function in R – Things to know

URL: https://www.progressiverobot.com/substring-function-in-r/ Substring() function in R is widely used to either extract the characters present in the data or to manipulate the data. You can easily extract the required characters from a string and also replace the values in a string. Hello folks, hope you are doing good. Today let's focus on the substing function […]

Read more
Outlier Analysis in R - Detect and Remove Outliers — step-by-step DevOps tutorial on Progressive Robot

Outlier Analysis in R – Detect and Remove Outliers

URL: https://www.progressiverobot.com/outlier-analysis-in-r/ Hello, readers! In this article, we will be focusing on Outlier Analysis in R programming, in detail. So, let us begin!! What are outliers in data? Before diving deep into the concept of outliers, let us focus on the pre-processing of data values. In the domain of data science and machine learning, pre-processing […]

Read more
How to use sum() in R - Find the sum of elements in R — step-by-step DevOps tutorial on Progressive Robot

How to use sum() in R – Find the sum of elements in R

URL: https://www.progressiverobot.com/sum-in-r/ Let's learn how to find the sum of the values with the help of the sum() in R. In this tutorial, we will try to find the sum of the elements of the vector. The syntax of the sum() function is = sum(x,na.rm=FALSE/TRUE) [Vector](/community/tutorials/vectors-in-r) is the easiest method to store multiple elements in […]

Read more
The paste() function in R - A  brief guide — step-by-step DevOps tutorial on Progressive Robot

The paste() function in R – A brief guide

URL: https://www.progressiverobot.com/paste-in-r/ Using the paste() function in R will be straight and simple. In this tutorial let's see how we can use paste() to concatenate the strings and values. paste(): Takes multiple elements from the multiple vectors and concatenates them into a single element. Along with paste() function, R has another function named paste0(). Yes, […]

Read more
The unique() function in R programming — step-by-step DevOps tutorial on Progressive Robot

The unique() function in R programming

URL: https://www.progressiverobot.com/unique-function-r-programming/ The unique() function in R is used to eliminate or delete the duplicate values or the rows present in the vector, [data frame](/community/tutorials/data-frames-in-r-programming), or [matrix](/community/tutorials/matrix-operations-in-r) as well. The unique() function found its importance in the EDA (Exploratory Data Analysis) as it directly identifies and eliminates the duplicate values in the data. In this […]

Read more
Understanding plot() Function in R - Basics of Graph Plotting — step-by-step DevOps tutorial on Progressive Robot

Understanding plot() Function in R – Basics of Graph Plotting

URL: https://www.progressiverobot.com/plot-function-in-r/ In this tutorial, let us first begin by understanding the basics using the plot() function in R. The R language is well known for its beautiful graphics with a rich set of functions to build and format any kind of graphs and the plot() function family one that helps us build those. The […]

Read more
What is R Programming? — step-by-step DevOps tutorial on Progressive Robot

What is R Programming?

URL: https://www.progressiverobot.com/what-is-r-programming/ What is R Programming? R is one of the most popular scripting languages for statistical programming today. The demand of R programmers has been constantly on the rise since the early 2010s and R still enjoys the status as a go-to programming language among data scientists. R has also been adapted to deep […]

Read more
Plotting ROC curve in R Programming — step-by-step DevOps tutorial on Progressive Robot

Plotting ROC curve in R Programming

URL: https://www.progressiverobot.com/plot-roc-curve-r-programming/ Hello, folks! In this article, we will be having a look at an important error metric of Machine Learning — Plotting ROC curve in R programming, in detail. So, let us begin!! The necessity of the ROC curve Error metrics enable us to evaluate and justify the functioning of the model on a […]

Read more
CHAT