Nizamuddin Siddiqui has Published 2307 Articles

How to add one column in an R data frame to rest of the next columns?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 10-Feb-2021 05:20:45

122 Views

Data Analysis projects might require things that we generally think simple but they are actually helpful to achieve objectives, one such thing would be adding values or columns of an R data frame. To add one column to rest of the next columns, we can replace the next columns by ... Read More

How to export data frame in R to excel?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 10-Feb-2021 05:04:53

530 Views

To export data frame in R to excel can be done with the help of write.xlsx function of xlsx package. We would need to pass the data frame name, the file name and the sheet name in which we want to save the data frame. For example, if we have ... Read More

How to find mean and standard deviation from frequency table in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 09-Feb-2021 12:36:12

4K+ Views

To find the mean and standard deviation from frequency table, we would need to apply the formula for mean and standard deviation for frequency data. For example, if we have a data frame called df that contains a column x for units and frequency for counts then the mean and ... Read More

How to find unique matrices in a list in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 09-Feb-2021 12:33:23

193 Views

A list can contain many types of elements such as vectors, matrices, data frames etc. If we have matrices in a list then to find unique matrices in that list, we can simply use unique function. For example, if we have a list called LIST that contains matrices having some ... Read More

How to return the same index for consecutively duplicated values in an R vector?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 09-Feb-2021 12:33:07

90 Views

It is obvious that duplicate values in an R vector do not have same indexes but we might want to create the same index for consecutively duplicated values, this will help to recognize the groups of duplicated values. For this purpose, we can use cumsum function along with diff function ... Read More

How to change the Y-axis title to horizontal using ggplot2 in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 09-Feb-2021 12:32:50

3K+ Views

The default direction of Y-axis title using ggplot2 in R is vertical and we can change to horizontal. For this purpose, we can use theme function of ggplot2 package. We would need to use the argument of theme function as axis.title.y=element_text(angle=0)) and this will write the Y-axis title to horizontal ... Read More

How to check for palindrome in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 09-Feb-2021 12:32:32

3K+ Views

A palindrome is a word or any value that is being read in the same way from right to left as in left to right. For example, 12321, 514212415, ABCDEDCBA, etc. To check palindrome in R, we can create a function using stri_reverse function of stringi package as shown in ... Read More

How to create bar chart based on two groups in an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 09-Feb-2021 12:28:33

570 Views

To create a bar chart based on two groups, we can use geom_bar function of ggplot2 package with position argument that defines the position of the groups. For example, if we have a data frame called df that contains two categorical variable x1 and x2 and the one response variable ... Read More

How to check if a list element is greater than a certain value in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 09-Feb-2021 12:28:18

695 Views

If we have a list that contains numeric elements and we want to check whether the elements are greater than a certain value then as.numeric function can be used. The output of the function will be in 0/1 format where 0 represents FALSE and 1 represents TRUE. For example, if ... Read More

How to perform rounding in R to next 10 instead of nearest 10?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 09-Feb-2021 12:22:00

154 Views

In general, most commonly used rounding is rounding to nearest 10 or nearest 100 but sometimes we actually want to remove the values after a value instead of rounding. For example, removing values after 2 decimal places, this is the type of situation where we need to round to next ... Read More

Advertisements