Nizamuddin Siddiqui has Published 2307 Articles

Find the number of non-missing values in each column by group in an R data frame.

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

682 Views

To find the number of non-missing values in each column by group in an R data frame, we can use summarise_each function of dplyr package with negation of is.na function.For Example, if we have a data frame called df that contains a grouping column say G and some other columns ... Read More

How to display x-bar in base R plot?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 03-Nov-2021 08:23:56

2K+ Views

To display x-bar in base R plot, we can use text function and define the bar with bar function inside expression function.For example, if we have a vector called x that contains first ten numbers (1 to 10) then we can display it’s mean inside the base R plot by ... Read More

How to color scatterplot points based on a threshold using ggplot2 in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

2K+ Views

To color scatterplot points based on a threshold using ggplot2, we first need to define a column with the threshold value and then we can use that column inside aes for coloring. The column with threshold can be created by using cut function.Check out the example given below to understand ... Read More

How to create multiple regression lines using ggplot2 in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

820 Views

To create multiple regression lines using ggplot2, we can use grouping inside aes.For example, if we have a data frame called that contains two numerical columns say x and y and a categorical column say C then the regression lines between x and y for all the categories in C ... Read More

How to remove duplicate columns from a matrix in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

561 Views

To remove duplicate columns from a matrix in R, we can use unique function.For Example, if we have a matrix called M that contains some duplicate columns then we can use the below command to remove those duplicate columns −unique(M, MARGIN=2)Example 1Following snippet creates a sample matrix −M1Read More

How to find the minimum for each row based on few columns in an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 03-Nov-2021 08:12:18

2K+ Views

To find the minimum for each row based on few columns in an R data frame, we can use pmin function inside with function.For example, if we have a data frame called df that contains five columns say x, y, z, a, and b then minimum for each row based ... Read More

How to display text in base R plot with outline?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 03-Nov-2021 08:05:39

331 Views

The display of text in base R plot with outline is not possible, for this purpose we would need to use shadowtext function of TeachingDemos package. The shadowtext function will be applied after creating the plot in base R.We will have to provide the location of the text inside the ... Read More

Differentiate between categorical and numerical independent variables in R.

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

662 Views

For categorical variable, each level is considered as an independent variable and is recognized by factor function. On the other hand, the numerical independent variable is either continuous or discrete in nature.Check out the Example given below for linear regression model summary to understand the difference between categorical and numerical ... Read More

How to create an upper triangular matrix using vector elements in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

2K+ Views

To create an upper triangular matrix using vector elements, we can first create the matrix with appropriate number of columns and rows then take the transpose of that matrix. After that we will assign the lower triangular matrix elements to 0.The selection of number of rows and columns plays an ... Read More

Set values in categorical column to numeric values in R data frame.

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 03-Nov-2021 07:55:36

3K+ Views

To set values in categorical column to numeric values in R data frame, we can use combine function c.For Example, if we have a data frame called df that contains a categorical column say C which has two categories as Low and High and if we want to represent these ... Read More

Advertisements