Nizamuddin Siddiqui has Published 2307 Articles

How to find the sum of a column values up to a value in another column in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 07:55:35

2K+ Views

To find the sum of a column values up to a particular value in another column, we can use cumsum function with sum function.For example, if we have a data frame called df that contains two columns say x and y and we want to find the sum of x ... Read More

How to create sample of rows using ID column in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 07:52:14

470 Views

To create sample of rows using ID column, we can use sample function. We would need to apply the sample function on ID column and take the subset of rows with the help of single square brackets.For example, if we have a data frame called df that contains an ID ... Read More

Create a quartile column for each value in an R data frame column.

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 07:51:41

2K+ Views

Any numerical data can be divided into four parts by using three quartiles, first quartile at 25%, second quartile at 50% and third quartile at 75% hence there will be four quarters to represent first 25%, second 25%, third 25% and the last 25% in a set of data.If we ... Read More

How to find the combination of matrix values in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 07:49:21

408 Views

To find the combination of matrix values in R, we can use expand.grid function with split function.For example, if we have a matrix called M then to create the combination of matrix values we can use the code mentioned below −do.call(expand.grid, split(M, rep(1:nrow(M), ncol(M))))Check out the examples given below to ... Read More

How to round values in proportion table in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 07:45:35

1K+ Views

To round values in proportion table in R, we can first save the proportion table in an object and then use the round function.For example, if we have a vector say X then we can create a proportion table for data in X using prop.table(table(X)) and store it in an ... Read More

How to convert matrices stored in a list into data frames in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 07:42:11

489 Views

A list may contain vectors, data frames, matrices, lists etc. If a list contains matrices and we want to convert those matrices into data frames then lapply function can be used along with as.data.frame function.For example, if we have a list called LIST that contains matrices then we can convert ... Read More

How to find the mean of a column grouped by date in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 07:37:06

936 Views

To find the mean of a column grouped by date, we can simply use aggregate function. For Example, if we have a data frame called df that contains a date column say Date and numerical column say Num then we can find the mean of Num by dates in the ... Read More

How to rotate a ggplot2 graph in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 07:36:23

985 Views

To rotate a ggplot2 graph, we can save it in an object and then use the print function by defining the angle with viewport.For example, if we have a graph saved in an object called PLOT then we can rotate it to 180 degrees by using the below mentioned command ... Read More

How to find the frequency for all columns based on a condition in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 07:34:13

355 Views

To find the conditional frequency for all columns based on a condition, we can use for loop where we will define the length of each column with condition for which we want to find the frequency.For example, if we have a data frame called df and we want to find ... Read More

How to add row percentages to contingency table in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 07:31:44

2K+ Views

To add row percentage to contingency table in R, we can use rowSums and sum function with table values and combine them with cbind function.For Example, if we have a table called TAB then we can add row percentages to TAB by using the below command −cbind(TAB, rowSums(TAB), rowSums(TAB)/sum(TAB))Example 1Following ... Read More

Advertisements