Nizamuddin Siddiqui has Published 2307 Articles

How to extract number from string if string is in different format than normal in R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

71 Views

To extract number from string if string is in different format than normal in R data frame, we can follow the below steps −First of all, create a data frame.Then, use gsub function along with as.numeric function to extract the number.ExampleCreate the data frameLet’s create a data frame as shown ... Read More

How to extract number from string in R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

2K+ Views

To extract number from string in R data frame, we can follow the below steps −First of all, create a data frame.Then, use gsub function to extract number from string.ExampleCreate the data frameLet’s create a data frame as shown below −x

How to remove repeated numbers in sequence in R data frame column?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

305 Views

To remove repeated numbers in sequence in R data frame column, we can follow the below steps −First of all, create a data frame.Then, use diff function and subsetting with single square brackets to remove repeated numbers in sequence.Example 1Create the data frameLet’s create a data frame as shown below ... Read More

How to split a factor variable into n number of variables equal to factor size with full length in R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

344 Views

To split a factor variable into n number of variables equal to factor size with full length in R data frame, we can follow the below steps −First of all, create a data frame.Then, use mtabulate function of qdapTools package to split the factor variable.ExampleCreate the data frameLet’s create a ... Read More

How to find the column means by factor levels in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 11-Nov-2021 06:08:38

3K+ Views

To find the column means by factor levels, we can use summarise function along with mean function after creating the group of factor levels with group_by function.For example, if we have a data frame called df that contains a factor column say F and a numerical column say Num then ... Read More

How to replace total string if partial string matches with another string in R data frame column?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 11-Nov-2021 06:07:51

818 Views

To replace total string if partial string matches with another string in R data frame column, we can follow the below steps −First of all, create a data frame with string column.Then, use gsub function to replace total string if partial string matches with another string.ExampleCreate the data frameLet’s create ... Read More

How to find the number of common words between two string vectors in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

466 Views

To find the number of common words between two string vectors, we would first need to split both the vectors using unlist and strsplit function and then we can apply length function along with intersect function.Check out the below examples to understand how it can be done.Example 1Following snippet creates ... Read More

How to change the abline colour created using ggplot2 in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 11-Nov-2021 06:04:16

2K+ Views

To change the abline color created using ggplot2 in R, we can follow the below steps −First of all, create a data frame.Then, use ggplot2 to create the regression line with given slope and intercept.After that, create the same plot with colour argument to change the abline colour.ExampleCreate the data ... Read More

How to create separate columns for first and last name in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

1K+ Views

Most of the times in data analysis, the first name and last name of people are joined together or we can say they are stored in a single space hence we need to separate them to make the data easily readable. To create separate columns for first and last name ... Read More

How to change the row order in an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 11-Nov-2021 06:00:02

6K+ Views

To change the row order in an R data frame, we can use single square brackets and provide the row order at first place.For example, if we have a data frame called df that contains 10 rows then we can change the row order by using the command given below ... Read More

Advertisements