Nizamuddin Siddiqui has Published 2307 Articles

How to create side by side barplot in base R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 12-Nov-2021 08:05:05

2K+ Views

If we want to create side by side barplot for two vectors or two columns of same or different data frames then we first need to combine those vectors or columns with the help of cbind function as shown below. After that barplot function will be applied to the combined ... Read More

How to change the color of bars in base R barplot?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

1K+ Views

To change the color of bars in base R barplot, we can use col argument inside the barplot function.For example, if we have a vector called V for which we want to create the barplot then we can use the command given below to get the bars in blue color ... Read More

How to create an alternately increasing sequence in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 12-Nov-2021 08:01:29

199 Views

To create an alternately increasing sequence, we can take help of logical constants in the R language that is TRUE and FALSE. While creating a vector, the first value will be set to FALSE and the second value will be set to TRUE, therefore, the resulting vector will always have ... Read More

How to find n number of quartiles for every row in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 12-Nov-2021 08:00:26

599 Views

To find the n number of quartiles for every row in an R data frame, we can use apply function along with quantile function.For example, if we have a data frame called df that contains hundred rows and we want to find two quartiles say first and third for each ... Read More

How to deal with NA output of apply in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 12-Nov-2021 07:56:43

403 Views

When we use apply function on numerical as well as character column then the output of the function returns NA for all hence to deal with this problem, we can use lapply function. The lapply function will take each column into account independently, therefore, the arithmetic operations will be performed ... Read More

How to subset an R data frame based on small letters?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 12-Nov-2021 07:54:27

167 Views

If we have a data frame that contains some lower case and some upper-case string values then we might want to subset the data frame based on lower case or upper-case letters.For this purpose, we can make use of apply and sapply function as shown in the below examples.Example 1Following ... Read More

How to check for equality of three columns by row in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 12-Nov-2021 07:51:59

2K+ Views

To check for equality of three columns by row, we can use logical comparison of equality with double equal sign (==) and & operator.For example, if we have a data frame called df that contains three columns say C1, C2, and C3 and we want to check for equality of ... Read More

How to create a lagged column in an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 12-Nov-2021 07:48:02

2K+ Views

To create a lagged column in an R data frame, we can use transform function.For example, if we have a data frame called that contains a column say C and we want to create a lagged column in df based on C then we can use the command given below ... Read More

How to add all columns of an R data frame by row?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 12-Nov-2021 07:45:17

114 Views

To add all columns by row, we can use rowSums function.For example, if we have a data frame called df that contains five columns say x, y, z, a, and b and we want to add all these columns by row then we can use the below mentioned command −df$Total_sumRead More

How to convert the data type of all columns from integer to factor in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 12-Nov-2021 07:39:37

3K+ Views

To convert the data type of all columns from integer to factor, we can use lapply function with factor function.For example, if we have a data frame called df which has all integer columns then we can use the below given command to convert all columns data type to factor ... Read More

Advertisements