Nizamuddin Siddiqui has Published 2307 Articles

Create bar plot for grouped data of two columns in base R.

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 03-Nov-2021 10:02:16

3K+ Views

To create bar plot for grouped data in base R, we can create the table for both the columns and then use beside argument of barplot function to create the bar plot. To differentiate between the bars, we need to set legend argument to TRUE as well. To understand how ... Read More

Get a matrix as Output if a condition for a single value is met in R.

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 03-Nov-2021 09:58:55

193 Views

If we want to check a condition and the Output based on that condition needs to be a matrix then we can use if else function in R.For Example, if we have a value say V = 5 and we want to get matrix M1 if V is equal to ... Read More

How to create normal probability plot in R with confidence interval bands?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 03-Nov-2021 08:46:41

2K+ Views

To create normal probability plot in R with confidence interval bands, we can use qqPlot function of QTLRel package. We simply need to pass the vector name that contains normal distribution values inside qqPlot function or directly introduce the vector inside the function as shown in the below given examples.Example ... Read More

Create a matrix for odd number of elements by filling the last element with NA in R.

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 03-Nov-2021 08:46:24

237 Views

We can find the total number of elements for a matrix with the help of prod and dim function as shown in the below Examples. To create a matrix for odd number of elements by filling the last element with NA, we can use byrow argument.For Example, if we have ... Read More

How to create an ID column in R based on categories?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 03-Nov-2021 08:44:43

2K+ Views

If we have a categorical column in an R data frame then it can be used to create an ID column where each category will have its own ID defined on the basis of categories in the categorical column.For this purpose, we would need to read the categorical column with ... Read More

How to create a scatterplot with larger distance between facets in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 03-Nov-2021 08:40:48

69 Views

By default, the distance/space between facets created by using ggplot2 is very less and it becomes a little uneasy for viewers to separately read the facets. Therefore, to deal with this problem we can increase the space between facets and it can be done with the help of theme function ... Read More

How to find the column means for each matrix stored in an R list?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 03-Nov-2021 08:38:22

396 Views

To find the column mean of all matrices stored in an R list, we can use sapply function along with colMeans function.For example, if we have a list called LIST that contains some matrices then the col means for each matrix can be found by using the commandsapply(LIST, colMeans)Check out ... Read More

How to randomly assign participants to groups in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 03-Nov-2021 08:33:46

4K+ Views

To randomly assign participants to groups, we can use sample function.For example, if we have a data frame called df that contains a column say Employee_ID and we want to create five groups that are stored in a vector say Grp then random assignment of participants to values in Grp ... Read More

Create an integer column in an R data frame with leading zeros

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 03-Nov-2021 08:28:24

481 Views

To create an integer column in an R data frame with leading zeros, we can use sprintf function.For Example, if we want to create a data frame column having values starting from 1 to 10 and we want to have 1 as 01 and so on then we can use ... Read More

How to change the Y-axis title in base R plot?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 03-Nov-2021 08:26:02

9K+ Views

The easiest way to change the Y-axis title in base R plot is by using the ylab argument where we can simply type in the title. But the use of ylab does not help us to make changes in the axis title hence it is better to use mtext function, ... Read More

Advertisements