Nizamuddin Siddiqui has Published 2307 Articles

Extract a data frame column values as a vector by matching a vector in R.

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 08-Nov-2021 07:39:56

1K+ Views

To extract a data frame column values as a vector by matching a vector in R, we can use subsetting with %in% operator.For Example, if we have a data frame called df having a column say C and a vector V and we want to extract values in C if ... Read More

How to change the name of single column using setNames in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 07:43:22

394 Views

To change the name of single column using setNames, we would need to specify the column name that needs to be changed.For example, if we have a data frame called df that contains three columns say Var1, var2, and Var3 and we want to change var2 to Var2 then we ... Read More

How to add single quotes to strings in an R data frame column?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 07:35:03

4K+ Views

To add single quotes to strings in an R data frame column, we can use paste0 function. This will cover the strings with single quotes from both the sides but we can add them at the initial or only at the last position.To add them on both the sides, we ... Read More

How to stop default printing of large numbers in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 07:29:35

164 Views

When we write a long number in R, by default the printed output of that number is in scientific notation. To stop this printing behavior we can use sprint function.For example, if we have a data frame called df that contains a column say X having long numbers then we ... Read More

How to associate a character to numbers in an R data frame column?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 07:27:40

326 Views

Sometimes a variable has a character associated with the numerical values such as variable name etc. If we want to associate a character to numbers then paste0 function can be used.For example, if we have a data frame called df that contains a column say X then we can associate ... Read More

How to remove only the first duplicate row by group in an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 07:24:13

1K+ Views

To remove only the first duplicate row by group, we can use filter function of dplyr package with duplicated function.For example, if we have a data frame called df that contains a grouping column say Grp then removal of only first duplicate row by group can be done by using ... Read More

How to sort an R data frame rows in alphabetical order?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 07:19:41

1K+ Views

If we have string data stored in R data frame columns then we might want to sort the data frame rows in alphabetical order. This can be done with the help of apply and sort function inside transpose function.For example, if we have a data frame called df that contains ... Read More

How to find the percentage of missing values in each column of an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 07:12:26

8K+ Views

To find the percentage of missing values in each column of an R data frame, we can use colMeans function with is.na function. This will find the mean of missing values in each column. After that we can multiply the output with 100 to get the percentage.Check out the below ... Read More

How to count the number of times a value occurs in a column of an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 07:06:00

8K+ Views

To count the number of times a value occurs in a column of an R data frame, we can use table function for that particular column.For example, if we have a data frame called df that contains a column say Response then finding the number of times a value occurs ... Read More

How to add columns with square of each column in R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 07:01:49

988 Views

To add columns with square of each column in R data frame, we can use setNames function and cbind function for squaring each value. This might be required when we want to use squared form of variables in the data analysis.Check out the below given examples to understand how it ... Read More

Advertisements