Nizamuddin Siddiqui has Published 2307 Articles

How to remove first few rows from each group in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 06:53:28

1K+ Views

To remove first few rows from each group in R, we can use slice function of dplyr package after grouping with group_by function.For example, if we have a data frame called df that contains a grouping column say Grp then we remove first 2 rows from each group by using ... Read More

How to create boxplot of grouped data in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 06:44:05

978 Views

To create boxplot of grouped data in R, we would first need to convert the grouped data into complete data by repeating the values up to the frequency/count for each value and then use the boxplot function on the complete data.Check out the below example to understand how it can ... Read More

How to display mean with underline in base R plot?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 06:42:08

353 Views

To display mean value with underline in base R plot, we can use underline function within text function. The text function will be used to write the word Mean in the plot and underline function will underline the mean.Check out the below example to understand how it works.ExampleFollowing snippet creates ... Read More

How to remove Index in base R plot?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 06:39:42

445 Views

When we do not pass any title for X-axis then the default is Index and if we want to remove it then xlab argument needs to be used inside the plot function.For example, if we want to create a plot of first hundred values without Index on X-axis then we ... Read More

How to disable the display of some correlations using corrplot in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

657 Views

When we create a correlation plot using corrplot the correlation among variables is displayed on the plot, if we want to disable some of those correlations then we first need to set them to NA in the correlation matrix and then use the corrplot function with na.label set to blank ... Read More

How to create bar plot with positive and negative values in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 06:29:56

4K+ Views

To create bar plot with positive and negative values, we can make use of ggplot function.For example, if we have a data frame called df that contains a categorical column say C and a numerical column Num which has some positive and some negative values then the bar plot for ... Read More

How to find the degrees of freedom of residual from a regression model in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 06:28:24

1K+ Views

To find the degrees of freedom of residual from a regression model, we can use the function df.residual along with the model object.For example, if we have a regression model stored in an object called Model then the degrees of freedom of residual for the same model can be found ... Read More

How to find the power of t test in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

4K+ Views

To find the power of t test, we can use pwr.t.test function of pwr package where we can pass the arguments for type of the test such as one sample or two sample, alternative hypothesis such as one-sided or two-sided, significance level, difference for two samples, and the sample size.Check ... Read More

How to combine two data frames by filling NA in empty places in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Nov-2021 06:20:59

929 Views

To combine two data frames by filling NA in empty places, we can use rbind_fill function of plyr package.For example, if we have two data frames say DF1 and DF2 that have some common and some uncommon columns then we can combine them by using the below given command −rbind.fill(DF1, ... Read More

How to decrease the width of bars for plotly bar chart in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

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

1K+ Views

To decrease the width of bars for plotly bar chart, we can use layout function and set the autosize argument to FALSE.For example, if we have a data frame called that contains a categorical column C and a numerical column Count then bar chart with decreased width of the bars ... Read More

Advertisements