R Programming

How to use sink() function in R — step-by-step DevOps tutorial on Progressive Robot

How to use sink() function in R

URL: https://www.progressiverobot.com/sink-function-in-r/ You can use sink() function in R to drive the data to the external connections. Hello folks, today we will be looking into the applications of the sink() function in R. We are going to try to make connections in multiple formats such as text and [csv file types](/community/tutorials/r-read-csv-file-into-data-frame). Using the sink() function, […]

Read more
Reading the CSV file into Data frames in R — step-by-step DevOps tutorial on Progressive Robot

Reading the CSV file into Data frames in R

URL: https://www.progressiverobot.com/r-read-csv-file-into-data-frame/ With the help of specific functions offered by R, reading the CSV files into data frames is much easier. What is a CSV file? CSV is expanded as Comma, Separated, Values. In this file, the values stored are separated by a comma. This process of storing the data is much easier. Why CSV […]

Read more
R with() and within() function - All you need to know! — step-by-step DevOps tutorial on Progressive Robot

R with() and within() function – All you need to know!

URL: https://www.progressiverobot.com/with-and-within-function-in-r/ Hello, readers! In this article, we will be having a look at two closely related yet different functions of R programming – R with() and within() function, in detail. So, let us being!! 🙂 1. R with() function We often come across situations wherein we feel the need to build customized/user-defined functions to […]

Read more
How to use strsplit() function in R? — step-by-step DevOps tutorial on Progressive Robot

How to use strsplit() function in R?

URL: https://www.progressiverobot.com/strsplit-function-in-r/ As a programmer, you may need to work on tons of strings. You will perform concatenation and splitting of them very often. There comes the strsplit() function in R. In a previous article, we have discussed the [paste()](/community/tutorials/paste-in-r) function to concatenate the strings. Now, let's see how we can split a [string vector](/community/tutorials/vectors-in-r) […]

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
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
The rbind() function in R - Binding Rows Made Easy — step-by-step DevOps tutorial on Progressive Robot

The rbind() function in R – Binding Rows Made Easy

URL: https://www.progressiverobot.com/rbind-function-r/ The binding or combining of the rows is very easy with the rbind() function in R. rbind() stands for row binding. In simpler terms joining of multiple rows to form a single batch. It may include joining two data frames, vectors, and more. This article will talk about the uses and applications of […]

Read more
How To Use sub() and gsub() in R — step-by-step DevOps tutorial on Progressive Robot

How To Use sub() and gsub() in R

URL: https://www.progressiverobot.com/sub-and-gsub-function-r/ Introduction The sub() and gsub() functions in R will substitute the string or the characters in a vector or a data frame with a specific string. These functions are useful when performing changes on large data sets. In this article, you will explore how to use sub() and gsub() functions in R. Prerequisites […]

Read more
The head() and tail() function in R - Detailed Reference — step-by-step DevOps tutorial on Progressive Robot

The head() and tail() function in R – Detailed Reference

The head() and tail() function in R are often used to read the first and last n rows of a dataset. You may be a working professional, a programmer, or a novice learner, but there are some times where you required to read large datasets and analyze them. It is really hard to digest a […]

Read more
CHAT