Nizamuddin Siddiqui has Published 2307 Articles

How to convert a table into matrix in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 06:06:48

4K+ Views

To convert a table into matrix in R, we can use apply function with as.matrix.noquote function.For example, if we have a table called TABLE then we can convert it into a matrix by using the command given below −apply(as.matrix.noquote(TABLE), 2, as.numeric)Example 1Following snippet creates a dataframe −x1Read More

How to create a scatterplot with colors as group in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 11:17:57

106 Views

To create a scatterplot with colors as group, we can define the colors in col argument as characters.For Example, if we have two vectors then we can create scatterplot between x and y with red and blue colors for x and y value by using the below mentioned command −plot(x, ... Read More

Create a rolling mean column by displaying means to corresponding values in R data frame.

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 11:11:58

166 Views

To create a rolling mean column by displaying means to corresponding values in R data frame, we can use ave function with rep function.For Example, if we have a data frame called df that contains a numerical column say X then we can create a rolling mean column for every ... Read More

Combine two columns in R data frame with comma separation.

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 11:06:58

2K+ Views

To combine two columns in R data frame with comma separation, we can use paste function with sep argument.For Example, if we have two columns say X and Y in a data frame called df then we can combine the values of these two columns in a new column with ... Read More

How to find the covariance between two vectors in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 10:59:52

116 Views

The covariance is a mathematical measurement to quantify the variation between of two variables together. That means it tells us how two variables under consideration vary together. If we have two vectors and we want to find the covariance between them then we can use the command mentioned below −cov(“First_Vector”, ... Read More

How to apply t test on each row of an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

2K+ Views

To apply t test on each row of an R data frame, we can use apply function along with t.test function. For Example, if we have a data frame called DF and we want to apply t test on each row of DF then we can use the command given ... Read More

How to perform one sample Kolmogorov-Smirnov test in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 10:39:26

4K+ Views

The one sample Kolmogorov-Smirnov test is used to check whether a data set follows certain distribution of not.For Example, if we have a vector called X and we want to know whether values in X follow normal distribution or not then we can use the command given below −ks.test(X, "pnorm")Check ... Read More

How to increase the distance between boxplots using ggplot2 in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 08:33:32

2K+ Views

To increase the distance between boxplots created by using ggplot2, we can reduce the widths of the boxplots and hence the distance between the plots will be automatically increased. This will be required when we have large number of categories for which the boxplots are created.Check out the below given ... Read More

How to set lower triangular matrices including main diagonal to zero stored in an R array?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 08:31:17

276 Views

The matrices stored in an array cannot directly have zero at lower triangular or upper triangular positions because assignment in arrays is not straight forward. Therefore, to set lower triangular matrices to zero stored in an R array, we can use for loop.Check out the below given example to understand ... Read More

How to combine list elements of different sizes in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 08:31:10

439 Views

To combine list elements of different sizes in R, we can use expand.grid function. For Example, if we have a list called LIST that contains elements of different sizes then we can combine those items by using the command given below −expand.grid(LIST)Example 1To combine list elements of different sizes in ... Read More

Advertisements