Nizamuddin Siddiqui has Published 2307 Articles

How to find the groupwise number of positive and negative values in an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 11:42:08

604 Views

To find the groupwise number of positive and negative values in an R data frame, we can use mutate function of dplyr package. For example, if we have a data frame called df with one categorical column x and one numerical column y then the number of positive and negative ... Read More

How to create a linear model with interaction term only in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 11:33:04

860 Views

To create a linear model with interaction term only, we can use the interaction variable while creating the model. For example, if we have a data frame called df that has two independent variables say V1 and V2 and one dependent variable Y then the linear model with interaction term ... Read More

How to create a perpendicular arrow in base R plot?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 11:29:48

193 Views

To create a perpendicular arrow in base R plot, we can use arrows function. There are five arguments of arrows function that will be used to create the perpendicular arrow. The first four values define the position of the arrow and the last argument xpd allows R to create the ... Read More

How to fill histogram bars using ggplot2 in R with different colors?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 11:17:43

1K+ Views

When we create histogram using ggplot2 we need to pass the number of bins we want to have in the histogram and on the basis of these bin numbers the histogram will be created, these bin numbers are actually the number of bars we will have in the histogram. To ... Read More

How to display mean in a histogram using ggplot2 in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 11:11:57

4K+ Views

To display mean in a histogram using ggplot2, we can use geom_vline function where we need to define the x-intercept value as the mean of the column for which we want to create the histogram. Also, we can change the size of the line for mean in the histogram by ... Read More

How to change the space between bars in a barplot in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 11:10:07

518 Views

By default, the space between bars is equal irrespective of the number of bars in the plot. If we want to have different space between bars then space arguments need to be used inside the barplot function but the first value does not make an impact because the first space ... Read More

How to extract the residuals and predicted values from linear model in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 11:08:20

3K+ Views

The residuals are the difference between actual values and the predicted values and the predicted values are the values predicted for the actual values by the linear model. To extract the residuals and predicted values from linear model, we need to use resid and predict function with the model object.Consider ... Read More

How to create a qqplot with confidence interval in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 11:02:59

2K+ Views

A qqplot is the plot of quantiles that helps to understand whether the supplied data comes from the specified distribution, mostly it is used to check whether the data follows normal distribution or not. If we want to create the qqplot with confidence interval then qqPlot function of car package ... Read More

How to concatenate numerical columns in an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 10:59:30

704 Views

If we have values scattered in multiple columns in an R data frame then we need to combine them and create a single column, this combining process is called concatenation. The scatteredness of the values mostly happens when the data is not well formatted to be loaded in R. Therefore, ... Read More

How to convert a date to quarter and year in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 10:55:21

856 Views

Most of the times the date data is available only in date format and there is not information about the quarter of the year. The quarter of the year is required when we want compare the quarters or do some time series analysis. For the conversion of date into quarter ... Read More

Advertisements