Nizamuddin Siddiqui has Published 2307 Articles

How to display text in bar plot in the middle using ggplot2 in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 11-Nov-2021 06:46:24

3K+ Views

To display text in bar plot in the middle using ggplot2 in R, we can follow the below steps −First of all, create a data frame.Then, use ggplot function and geom_bar function to create the bar plot along with geom_text function to display the text in the middleExampleCreate the data ... Read More

How to find the percentage of zeros in each column of a data.table object in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 11-Nov-2021 06:43:55

186 Views

To find the percentage of zeros in each column of a data.table object in R, we can follow the below steps −First of all, create a data.table object.Then, use colSums function along with nrow function to find the percentage of zeros in each column.Example 1Create the data.table objectLet’s create a ... Read More

How to plot matrix elements using corrplot in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 11-Nov-2021 06:41:52

3K+ Views

To create a plot of matrix elements with the help of corrplot function, we would need to set is.corr argument to FALSE so that the matrix values will be plotted in the diagram, otherwise, the corrplot function requires correlation matrix instead of a matrix hence there will be an error ... Read More

How to remove rows in R matrix that contains a specific number?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 11-Nov-2021 06:40:54

443 Views

To remove rows in R matrix that contains a specific number, we can follow the below steps −First of all, create a matrix.Then, use single square subsetting with apply function to remove rows that contains a specific number.ExampleCreate the data frameLet’s create a data frame as shown below −MRead More

How to draw concentric circles in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

471 Views

To draw concentric circles, we can use draw.circle function of plotrix package but firstly, we would need to create a blank graph with plot function as shown below.For Example, we can create three concentric circles at position X=5 and Y=5 having radius of 1, 2, and 3 by using the ... Read More

How to convert values greater than a threshold into 1 in R data frame column?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 11-Nov-2021 06:36:01

2K+ Views

To convert values greater than a threshold into 1 in R data frame column, we can follow the below steps −First of all, create a data frame.Then, use ifelse function to convert values greater than a threshold into 1.ExampleCreate the data frameLet’s create a data frame as shown below −xRead More

How to subset R data frame rows if at least one or more values matches?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 11-Nov-2021 06:34:14

297 Views

To subset R data frame rows if at least one or more values matches, we can follow the below steps −First of all, create a data frame.Then, use rowSums function along with sapply function and values for match to subset the data frame rows if at least one or more ... Read More

How to repeat column values in R data frame by values in another column?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 11-Nov-2021 06:31:31

2K+ Views

To repeat column values in R data frame by values in another column, we can follow the below steps −First of all, create a data frame.Then, use rep function along with cbind function to repeat column values in the matrix by values in another column.ExampleCreate the data frameLet’s create a ... Read More

How to standardize selected columns in R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 11-Nov-2021 06:28:17

2K+ Views

To standardize selected columns in R data frame, we can follow the below steps −First of all, create a data frame.Then, use scale function with subsetting to standardize selected columns.ExampleCreate the data frameLet’s create a data frame as shown below −v1

How to convert a data frame into two column data frame with values and column name as variable in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

769 Views

To convert a data frame into two column data frame with values and column name as variable in R, we can follow the below steps −First of all, create a data frame.Then, use stack function to convert data frame.ExampleCreate the data frameLet’s create a data frame as shown below −xRead More

Advertisements